From 198ab7414da28d8fd2fa74adb6208666a3ed8b8e Mon Sep 17 00:00:00 2001 From: Seol_JY Date: Sat, 8 Feb 2025 02:31:44 +0900 Subject: [PATCH 1/2] chore: update actions/upload-artifact from v3 to v4 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ebdcf026..7eb70b239 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: detailed_summary: true - name: Test Summary - uses: actions/upload-artifact@v3 # upload test results + uses: actions/upload-artifact@v4 # upload test results if: always() with: name: test-results From 3b18a1f54824eda8b955f9ae4cb062f7b0ebef4f Mon Sep 17 00:00:00 2001 From: Seol_JY Date: Sat, 8 Feb 2025 02:54:01 +0900 Subject: [PATCH 2/2] fix: add overwrite option to upload-artifact v4 --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7eb70b239..89a815254 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,3 +60,4 @@ jobs: with: name: test-results path: '**/build/test-results/test/TEST-*.xml' + overwrite: true \ No newline at end of file