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()