Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
…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](actions/download-artifact@v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* 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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicholas Berlin <[email protected]>
  • Loading branch information
dependabot[bot] and nicholasberlin authored Sep 4, 2024
1 parent d9a42f9 commit 86558ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/multikernel-tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
Expand Down

0 comments on commit 86558ea

Please sign in to comment.