From cdd85747a483f3d6e58ab451a6a5e424226e77e6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Fri, 9 Jun 2023 18:07:51 +0000 Subject: [PATCH] chore(deps): update all github action dependencies Signed-off-by: renovate[bot] --- .github/workflows/build-clang-image.yaml | 16 +++++++-------- .github/workflows/build-deploy-docs.yaml | 8 ++++---- .github/workflows/build-images-ci.yml | 18 ++++++++--------- .github/workflows/build-images-releases.yml | 22 ++++++++++----------- .github/workflows/check-links-cron.yaml | 6 +++--- .github/workflows/check-links-pr.yaml | 6 +++--- .github/workflows/checkpatch.yaml | 2 +- .github/workflows/generated-files.yaml | 4 ++-- .github/workflows/gotests.yml | 8 ++++---- .github/workflows/lint-codeql.yml | 10 +++++----- .github/workflows/lint-helm.yaml | 2 +- .github/workflows/run-e2e-tests.yaml | 8 ++++---- .github/workflows/static-checks.yaml | 6 +++--- .github/workflows/vmtests.yml | 12 +++++------ 14 files changed, 64 insertions(+), 64 deletions(-) diff --git a/.github/workflows/build-clang-image.yaml b/.github/workflows/build-clang-image.yaml index e3b48969952..e958460d730 100644 --- a/.github/workflows/build-clang-image.yaml +++ b/.github/workflows/build-clang-image.yaml @@ -28,17 +28,17 @@ jobs: steps: # https://github.com/docker/setup-qemu-action - name: Set up QEMU - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 + uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 with: platforms: amd64,arm64 # https://github.com/docker/setup-buildx-action - name: Set up Docker Buildx - uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c + uses: docker/setup-buildx-action@6a58db7e0d21ca03e6c44877909e80e45217eed2 - name: Login to quay.io if: github.event_name == 'push' - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc with: registry: quay.io username: ${{ secrets.QUAY_CLANG_RELEASE_USERNAME }} @@ -54,13 +54,13 @@ jobs: fi - name: Checkout Source Code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: persist-credentials: false fetch-depth: 0 - name: Release Build clang - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf id: docker_build_release with: provenance: false @@ -73,7 +73,7 @@ jobs: - name: Install Cosign if: github.event_name == 'push' - uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b + uses: sigstore/cosign-installer@871cdc754496eb3792209f6e81422fac01b793b4 - name: Sign Container Image if: github.event_name == 'push' && steps.tag-in-repositories.outputs.exists == 'false' @@ -131,7 +131,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests if: github.event_name == 'push' - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: image-digest clang path: image-digest @@ -149,7 +149,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a + uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b with: path: image-digest/ diff --git a/.github/workflows/build-deploy-docs.yaml b/.github/workflows/build-deploy-docs.yaml index f14de55da19..334f8b4ca9d 100644 --- a/.github/workflows/build-deploy-docs.yaml +++ b/.github/workflows/build-deploy-docs.yaml @@ -20,18 +20,18 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d + uses: peaceiris/actions-hugo@3d92e2fd556bef7470d7e2a6aea63141183c20a6 with: hugo-version: '0.111.2' extended: true - name: Setup Node - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c + uses: actions/setup-node@869f4dd0c7f320ae834c2724d92a364de3893c24 with: node-version: '18' cache: 'npm' @@ -74,5 +74,5 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@0243b6c10d06cb8e95ed8ee471231877621202c0 + uses: actions/deploy-pages@ee48c7b82e077d7b8ef30b50a719e6a792a50c9a diff --git a/.github/workflows/build-images-ci.yml b/.github/workflows/build-images-ci.yml index 102255116f0..4b9a2e5b727 100644 --- a/.github/workflows/build-images-ci.yml +++ b/.github/workflows/build-images-ci.yml @@ -35,16 +35,16 @@ jobs: steps: # https://github.com/docker/setup-qemu-action - name: Set up QEMU - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 + uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 with: platforms: arm64 # https://github.com/docker/setup-buildx-action - name: Set up Docker Buildx - uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c + uses: docker/setup-buildx-action@6a58db7e0d21ca03e6c44877909e80e45217eed2 - name: Login to quay.io for CI - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc with: registry: quay.io username: ${{ secrets.QUAY_USERNAME_CI }} @@ -60,7 +60,7 @@ jobs: fi - name: Checkout Source Code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: persist-credentials: false ref: ${{ steps.tag.outputs.tag }} @@ -71,7 +71,7 @@ jobs: echo "TETRAGON_VERSION=$(make version)" >> $GITHUB_ENV - name: Install Cosign - uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b + uses: sigstore/cosign-installer@871cdc754496eb3792209f6e81422fac01b793b4 - name: Install Bom shell: bash @@ -83,7 +83,7 @@ jobs: # main branch pushes - name: CI Build (main) if: github.event_name == 'push' - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf id: docker_build_ci_main with: provenance: false @@ -138,7 +138,7 @@ jobs: # PR updates - name: CI Build (PR) if: github.event_name == 'pull_request_target' || github.event_name == 'pull_request' - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf id: docker_build_ci_pr with: provenance: false @@ -191,7 +191,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: image-digest ${{ matrix.name }} path: image-digest @@ -209,7 +209,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a + uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b with: path: image-digest/ diff --git a/.github/workflows/build-images-releases.yml b/.github/workflows/build-images-releases.yml index 2c80be0b32c..e31f07cc7cc 100644 --- a/.github/workflows/build-images-releases.yml +++ b/.github/workflows/build-images-releases.yml @@ -30,15 +30,15 @@ jobs: steps: # https://github.com/docker/setup-qemu-action - name: Set up QEMU - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 + uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 with: platforms: arm64 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c + uses: docker/setup-buildx-action@6a58db7e0d21ca03e6c44877909e80e45217eed2 - name: Login to quay.io - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc with: registry: quay.io username: ${{ secrets.QUAY_USERNAME_RELEASE_USERNAME }} @@ -50,7 +50,7 @@ jobs: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT - name: Checkout Source Code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: persist-credentials: false fetch-depth: 0 @@ -60,7 +60,7 @@ jobs: echo "TETRAGON_VERSION=$(make version)" >> $GITHUB_ENV - name: Release Build ${{ matrix.name }} - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf id: docker_build_release with: provenance: false @@ -77,7 +77,7 @@ jobs: - name: Install Cosign if: ${{ startsWith(steps.tag.outputs.tag, 'v') }} - uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b + uses: sigstore/cosign-installer@871cdc754496eb3792209f6e81422fac01b793b4 - name: Sign Container Image if: ${{ startsWith(steps.tag.outputs.tag, 'v') }} @@ -140,7 +140,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: image-digest ${{ matrix.name }} path: image-digest @@ -158,7 +158,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a + uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b with: path: image-digest/ @@ -175,10 +175,10 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd - name: Generate tetra CLI artifacts run: make cli-release @@ -188,7 +188,7 @@ jobs: - name: Create Release id: create_release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1 with: token: ${{ secrets.GITHUB_TOKEN }} tag_name: ${{ github.ref }} diff --git a/.github/workflows/check-links-cron.yaml b/.github/workflows/check-links-cron.yaml index 75fb89bf514..9f23c59798a 100644 --- a/.github/workflows/check-links-cron.yaml +++ b/.github/workflows/check-links-cron.yaml @@ -15,13 +15,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Links Checker id: lychee - uses: lycheeverse/lychee-action@9ace499fe66cee282a29eaa628fdac2c72fa087f + uses: lycheeverse/lychee-action@21b2b78c236322f7dcf5b8dbddaa6442f39c2f32 env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} with: @@ -38,7 +38,7 @@ jobs: - name: Create or update issue with report if: env.lychee_exit_code != 0 - uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f + uses: peter-evans/create-issue-from-file@c217d8ec015895bcd9e96d7932c6ffdee443a8bf with: title: ${{ env.ISSUE_NAME }} content-filepath: ./lychee/out.md diff --git a/.github/workflows/check-links-pr.yaml b/.github/workflows/check-links-pr.yaml index 59e75f17232..18b20cdefb3 100644 --- a/.github/workflows/check-links-pr.yaml +++ b/.github/workflows/check-links-pr.yaml @@ -11,12 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d + uses: peaceiris/actions-hugo@3d92e2fd556bef7470d7e2a6aea63141183c20a6 with: hugo-version: '0.111.2' extended: true @@ -37,7 +37,7 @@ jobs: - name: Links Checker id: lychee - uses: lycheeverse/lychee-action@9ace499fe66cee282a29eaa628fdac2c72fa087f + uses: lycheeverse/lychee-action@21b2b78c236322f7dcf5b8dbddaa6442f39c2f32 env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} with: diff --git a/.github/workflows/checkpatch.yaml b/.github/workflows/checkpatch.yaml index 17693c2d0be..779eff44274 100644 --- a/.github/workflows/checkpatch.yaml +++ b/.github/workflows/checkpatch.yaml @@ -7,7 +7,7 @@ jobs: checkpatch: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: fetch-depth: 0 - name: Run checkpatch.pl diff --git a/.github/workflows/generated-files.yaml b/.github/workflows/generated-files.yaml index 83a4b8fcda9..07b28929ba6 100644 --- a/.github/workflows/generated-files.yaml +++ b/.github/workflows/generated-files.yaml @@ -14,9 +14,9 @@ jobs: generated-files: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Install Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd with: go-version: '1.19.6' - name: Validate that generated files are up to date. diff --git a/.github/workflows/gotests.yml b/.github/workflows/gotests.yml index ec316790c1a..689dd78f87e 100644 --- a/.github/workflows/gotests.yml +++ b/.github/workflows/gotests.yml @@ -17,12 +17,12 @@ jobs: os: [ ubuntu-20.04 ] steps: - name: Install Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd with: go-version: '1.18.3' - name: Checkout code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: path: go/src/github.com/cilium/tetragon/ @@ -58,7 +58,7 @@ jobs: - name: Upload Tetragon logs if: failure() - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: tetragon-json path: /tmp/tetragon.gotest* @@ -66,7 +66,7 @@ jobs: - name: Upload bugtool dumps if: failure() - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: tetragon-bugtool path: /tmp/tetragon-bugtool* diff --git a/.github/workflows/lint-codeql.yml b/.github/workflows/lint-codeql.yml index 747bb19f32a..e02f38daf5a 100644 --- a/.github/workflows/lint-codeql.yml +++ b/.github/workflows/lint-codeql.yml @@ -26,11 +26,11 @@ jobs: steps: - name: Checkout code if: ${{ !github.event.pull_request }} - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: persist-credentials: false - name: Check code changes - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 + uses: dorny/paths-filter@4067d885736b84de7c414f582ac45897079b0a78 id: go-changes with: base: ${{ github.event.pull_request.base.sha }} @@ -50,13 +50,13 @@ jobs: security-events: write steps: - name: Checkout repo - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: persist-credentials: false fetch-depth: 1 - name: Initialize CodeQL - uses: github/codeql-action/init@d186a2a36cc67bfa1b860e6170d37fb9634742c7 + uses: github/codeql-action/init@5dcc7c296d3257d1193cef800892e4f8641931b6 with: languages: go - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@d186a2a36cc67bfa1b860e6170d37fb9634742c7 + uses: github/codeql-action/analyze@5dcc7c296d3257d1193cef800892e4f8641931b6 diff --git a/.github/workflows/lint-helm.yaml b/.github/workflows/lint-helm.yaml index 016cc30f496..7cbd06e7415 100644 --- a/.github/workflows/lint-helm.yaml +++ b/.github/workflows/lint-helm.yaml @@ -14,7 +14,7 @@ jobs: generated-files: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Run install/kubernetes/test.sh run: | cd install/kubernetes && ./test.sh diff --git a/.github/workflows/run-e2e-tests.yaml b/.github/workflows/run-e2e-tests.yaml index 6b1e9b5c69e..85d183a5b27 100644 --- a/.github/workflows/run-e2e-tests.yaml +++ b/.github/workflows/run-e2e-tests.yaml @@ -26,12 +26,12 @@ jobs: os: [ ubuntu-20.04 ] steps: - name: Install Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd with: go-version: '1.18.3' - name: Checkout Code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: path: go/src/github.com/cilium/tetragon/ @@ -52,7 +52,7 @@ jobs: echo "operatorImage=quay.io/cilium/tetragon-operator-ci:${SHA}" >> $GITHUB_OUTPUT - name: Pull Tetragon Images - uses: nick-invision/retry@v2 + uses: nick-invision/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2 with: timeout_minutes: 2 max_attempts: 30 @@ -108,7 +108,7 @@ jobs: - name: Upload Tetragon Logs if: failure() - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: tetragon-logs path: logs/e2e diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index 5a36db16f0a..18963d10a37 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -14,15 +14,15 @@ jobs: static-checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: fetch-depth: 0 - name: Install Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd with: go-version: '1.18.3' - name: Run static checks - uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 + uses: golangci/golangci-lint-action@825a50d3a25b2e9b7b488d99942fb8d989eff53d with: version: v1.52.2 args: --config=.golangci.yml --verbose diff --git a/.github/workflows/vmtests.yml b/.github/workflows/vmtests.yml index 1e94a2b4e28..18d4d20a07a 100644 --- a/.github/workflows/vmtests.yml +++ b/.github/workflows/vmtests.yml @@ -19,12 +19,12 @@ jobs: cancel-in-progress: true steps: - name: Install Go - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 + uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd with: go-version: '1.18.3' - name: Checkout code - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 with: path: go/src/github.com/cilium/tetragon/ @@ -54,7 +54,7 @@ jobs: tar cz --exclude='tetragon/.git' -f /tmp/tetragon.tar ./tetragon - name: upload build - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3 with: name: tetragon-build path: /tmp/tetragon.tar @@ -89,7 +89,7 @@ jobs: sudo chmod go+rX -R /boot/ - name: download build data - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a + uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b with: name: tetragon-build @@ -127,7 +127,7 @@ jobs: - name: Upload test results on failure or cancelation if: failure() || cancelled() - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 + uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 with: name: tetragon-vmtests-${{ matrix.kernel }}-${{ matrix.group }}-results path: go/src/github.com/cilium/tetragon/tests/vmtests/vmtests-results-* @@ -141,7 +141,7 @@ jobs: run: | touch /tmp/tetragon.tar - name: Upload truncated file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3 with: name: tetragon-build path: /tmp/tetragon.tar