From 86558eac0c441f23b87026bc8740dba77e8d7b97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:16:57 -0400 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#207) * Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/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 ... Signed-off-by: dependabot[bot] * Use the matching upload-artifact version * Fix typo * v4.1.7 -> v4 * Attempt to deconflict upload names * Fix more typos --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicholas Berlin --- .github/workflows/build.yml | 2 +- .github/workflows/multikernel-tester.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c20811a0..c0aee797 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: id: path-generator run: echo "PWD=$(pwd)" >> "$GITHUB_OUTPUT" - name: Archive Build Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: elastic-ebpf-${{ inputs.architecture }} path: ${{ steps.path-generator.outputs.PWD }}/artifacts-${{ inputs.architecture }}/elastic-ebpf-${{ steps.version-generator.outputs.ELASTIC_EBPF_VERSION }}-SNAPSHOT.tar.gz diff --git a/.github/workflows/multikernel-tester.yml b/.github/workflows/multikernel-tester.yml index 39a0116d..7713bb21 100644 --- a/.github/workflows/multikernel-tester.yml +++ b/.github/workflows/multikernel-tester.yml @@ -55,7 +55,7 @@ jobs: - name: Get Env run: echo "ELASTIC_EBPF_VERSION=$(cat VERSION)" >> $GITHUB_ENV && echo "PWD=$(pwd)" >> $GITHUB_ENV - name: Download Build Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: elastic-ebpf-${{ inputs.architecture }} path: ${{ env.PWD }}/artifacts @@ -74,15 +74,15 @@ jobs: mkdir -p logs && mv testing/results logs/${{ matrix.kernel_flavor }}-${{ inputs.architecture }} - name: Archive test summary if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: result-summary + name: result-summary-${{ matrix.kernel_flavor }}-${{ inputs.architecture }}.txt path: results-${{ matrix.kernel_flavor }}-${{ inputs.architecture }}.txt - name: Archive individual test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: logs + name: logs-${{ matrix.kernel_flavor }}-${{ inputs.architecture }}.txt path: logs - name: Print summary if: always()