diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-01-01 15:46:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 06:46:02 +0000 |
commit | bf7ac8215c9d78735d411a064dceffde812b7c1f (patch) | |
tree | 7df4174d723bef04415e43c303e3ce4f4b75b0eb /.github/workflows/playwright.yml | |
parent | 7958444b4ead530b3bee1bdee53e1ad6842ef86c (diff) |
Bump actions/upload-artifact from 3 to 4 (#496)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows/playwright.yml')
-rw-r--r-- | .github/workflows/playwright.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 613dffc7..77cee94d 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -76,12 +76,12 @@ jobs: run: npx playwright test -u if: github.event_name == 'push' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-screenshots path: test/playwright/__screenshots__/ - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-report path: playwright-report/ @@ -90,13 +90,13 @@ jobs: run: echo ${{ steps.master-screenshots.outcome }} > ./master-screenshots-outcome if: github.event_name == 'pull_request' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: master-screenshots-outcome path: master-screenshots-outcome if: github.event_name == 'pull_request' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-output path: playwright-output |