Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #207

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading