diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c20811a0..c0b6078b 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.17 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 41ee513d..8c1ab79f 100644 --- a/.github/workflows/multikernel-tester.yml +++ b/.github/workflows/multikernel-tester.yml @@ -74,13 +74,13 @@ 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.1.7 with: name: result-summary 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.1.7 with: name: logs path: logs