Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 17, 2024
1 parent f0a40b5 commit 6c2e24f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ 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
path: test/rendering/reports/
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
Expand Down

0 comments on commit 6c2e24f

Please sign in to comment.