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