From ac803ca7dc9735fdf14c697123296eb995dbfbdd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 10:28:00 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/build-test-single.yml | 2 +- .github/workflows/validate.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-single.yml b/.github/workflows/build-test-single.yml index 6b6e1ab4..1a3fce04 100644 --- a/.github/workflows/build-test-single.yml +++ b/.github/workflows/build-test-single.yml @@ -41,6 +41,6 @@ jobs: yarn run test --maxWorkers=2 --coverage ../../test/bin/cc-test-reporter format-coverage -t lcov -o ../../coverage/codeclimate.${{ inputs.package }}.json ../packages/${{ inputs.package }}/coverage/lcov.info - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: coverage/codeclimate.${{ inputs.package }}.json diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 94fce41c..847817a2 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -17,7 +17,7 @@ jobs: - run: yarn playwright install --with-deps - run: yarn run test:rendering id: rendering - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ failure() && steps.rendering.conclusion == 'failure' }} with: name: rendering-output @@ -25,7 +25,7 @@ jobs: retention-days: 3 - run: yarn run test:integration id: integration - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ failure() && steps.integration.conclusion == 'failure' }} with: name: integration-output