From 597fc9e76eb49b8ea8d8e9a23bba21bcedb10055 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 11:15:49 +0200 Subject: [PATCH] Bump actions/download-artifact (#132) Bumps the github_actions group with 1 update in the /.github/workflows directory: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 3 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production dependency-group: github_actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/kernelctf-release-build.yaml | 2 +- .github/workflows/kernelctf-submission-verification.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kernelctf-release-build.yaml b/.github/workflows/kernelctf-release-build.yaml index 08d278e5..fb20cbf7 100644 --- a/.github/workflows/kernelctf-release-build.yaml +++ b/.github/workflows/kernelctf-release-build.yaml @@ -54,7 +54,7 @@ jobs: needs: build steps: - name: Download exploit - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: ${{inputs.releaseId}} path: ./kernelctf/releases/${{inputs.releaseId}} diff --git a/.github/workflows/kernelctf-submission-verification.yaml b/.github/workflows/kernelctf-submission-verification.yaml index d8487854..ab2f3eab 100644 --- a/.github/workflows/kernelctf-submission-verification.yaml +++ b/.github/workflows/kernelctf-submission-verification.yaml @@ -138,7 +138,7 @@ jobs: sudo udevadm trigger --name-match=kvm - name: Download exploit - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: exploit_${{ env.RELEASE_ID }} path: ./kernelctf/repro/exp/ @@ -232,7 +232,7 @@ jobs: if: always() && needs.structure_check.result == 'success' steps: - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: path: ./artifacts