From 344d3044cbdf45e30ff54b3fb816b4104412c79c Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Fri, 12 Jul 2024 13:11:29 +0200 Subject: [PATCH] Patch is not needed anymore --- .github/workflows/composite-action/action.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/composite-action/action.yml b/.github/workflows/composite-action/action.yml index b1aaa36..604cfca 100644 --- a/.github/workflows/composite-action/action.yml +++ b/.github/workflows/composite-action/action.yml @@ -4,14 +4,14 @@ runs: using: "composite" steps: # See: https://github.com/actions/runner-images/issues/9425 - - name: Patch crun - shell: bash - if: > - startsWith(matrix.distro, 'debian') || - startsWith(matrix.distro, 'ubuntu') - run: | - curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64 - sudo install crun /usr/bin/crun + # - name: Patch crun + # shell: bash + # if: > + # startsWith(matrix.distro, 'debian') || + # startsWith(matrix.distro, 'ubuntu') + # run: | + # curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64 + # sudo install crun /usr/bin/crun # This is necessary on GH Actions to allow running systemd in rootless containers # see: https://github.com/actions/virtual-environments/issues/3536 # see: https://github.com/ansible-community/molecule/discussions/3155