From db5bbd05d8f939fa11ad6a7224bcfbc00bdd9c34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 03:26:50 +0000 Subject: [PATCH] Update actions/upload-artifact action to v4 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4630baa..80e12c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,7 +49,7 @@ jobs: run: make check | xcpretty - name: Install run: make install | xcpretty - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: name: xcnew-xcode-${{ matrix.xcode }}.xcresult @@ -58,7 +58,7 @@ jobs: run: | xcrun xccov view --report --json xcnew.xcresult > coverage.json ./cc-test-reporter format-coverage --input-type xccov --output 'codeclimate-xcode-${{ matrix.xcode }}.json' coverage.json - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: coverages path: codeclimate-xcode-${{ matrix.xcode }}.json