Skip to content

Commit 9dea149

Browse files
authored
fix-actions (#191)
1 parent 609a722 commit 9dea149

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/coverage.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: "20.1.0"
2222
- name: Wait for Playwright tests
2323
continue-on-error: false
24-
uses: fountainhead/action-wait-for-check@v1.1.0
24+
uses: fountainhead/action-wait-for-check@v1.2.0
2525
id: wait-for-playwright-tests
2626
with:
2727
token: ${{ secrets.GITHUB_TOKEN }}
@@ -31,7 +31,7 @@ jobs:
3131
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3232

3333
- name: Download Playwright test coverage artifacts
34-
uses: dawidd6/action-download-artifact@v2
34+
uses: dawidd6/action-download-artifact@v7
3535
with:
3636
github_token: ${{secrets.GITHUB_TOKEN}}
3737
path: ./artifacts
@@ -56,7 +56,7 @@ jobs:
5656
dest: coverage.zip
5757

5858
- name: Upload coverage report as artifact
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: coverage
6262
path: coverage.zip

.github/workflows/perf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Upload Tracerbench Artifacts
4545
if: failure() || success()
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: Trace Artifacts
4949
path: tracerbench-results

.github/workflows/playwright.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- name: Generate coverage report
2828
run: pnpm run nyc:report
2929
- name: Upload Playwright coverage report
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: playwright-coverage
3333
path: ./coverage/playwright-final.json
3434
retention-days: 30
35-
- uses: actions/upload-artifact@v3
35+
- uses: actions/upload-artifact@v4
3636
if: always()
3737
with:
3838
name: playwright-report

0 commit comments

Comments
 (0)