From b6a9f7590f022a22c4d5d1dc4c508ff8611c9978 Mon Sep 17 00:00:00 2001 From: Li Date: Thu, 30 Jan 2025 19:58:40 +0000 Subject: [PATCH] Update check.yml to use upload-artifact@v4 check-headers action is failing with the reason "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/" so this is bumping the version to v4, https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md none of these cases apply here, so i think this should just work, --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 922b0c30d..90e6c4a1f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -87,7 +87,7 @@ jobs: make -j$(nproc) - name: Upload artifacts if: ${{ success() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: vitasdk-db-stubs path: vitasdk-db-stubs.tar.bz2