From 41a7a85c505d6fcf2661f42849fb07d5adf047f2 Mon Sep 17 00:00:00 2001 From: Eng Zer Jun Date: Wed, 20 Nov 2024 18:26:34 +0800 Subject: [PATCH 1/2] ci(run-tests): update actions/upload-artifact from 3 to 4 For some reasons, Dependabot did not detect the `upload-artifact@v3` in PR #2133. v3 of `actions/upload-artifact` and `actions/download-artifact` will be fully deprecated by 5 December 2024. Jobs that are scheduled to run during the brownout periods will also fail. See [1][2]. [1]: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ [2]: https://github.blog/changelog/2024-11-05-notice-of-breaking-changes-for-github-actions/ Signed-off-by: Eng Zer Jun --- .github/actions/run-tests/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index bb3271c442c..23df885c242 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -70,7 +70,7 @@ runs: env: FILTER: ${{ inputs.filter }} UPLOAD_LOGS: ${{ inputs.upload-logs }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() && inputs.upload-logs == 'true' && !env.ACT with: name: ${{ inputs.upload-logs-name }} From 04652d79bebc7b43c6983a0d2f49cd67edaebbff Mon Sep 17 00:00:00 2001 From: Eng Zer Jun Date: Wed, 20 Nov 2024 19:59:16 +0800 Subject: [PATCH 2/2] Empty commit to retry failing CI