From f9b47d5dbac3078621ba9af70a919d4d5f83bd16 Mon Sep 17 00:00:00 2001 From: Alexey Bader Date: Thu, 9 Jan 2025 09:37:40 -0800 Subject: [PATCH] Uplift GitHub Action upload-artifact version. The CI jobs fail with the error: > Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ Moving to version 4 to fix the error. --- .github/workflows/cts_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cts_ci.yml b/.github/workflows/cts_ci.yml index fedc8cc26..57d8ffcd9 100644 --- a/.github/workflows/cts_ci.yml +++ b/.github/workflows/cts_ci.yml @@ -163,7 +163,7 @@ jobs: sort --numeric-sort --reverse --output=build_times.log build_times.log echo "Total time: $( date --date=@$ELAPSED --utc '+%-Hh %-Mm %-Ss' )" >> build_times.log - name: Upload build times artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-times-${{ matrix.sycl-impl }} path: ${{ env.container-workspace }}/build/build_times.log