Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
PR_NUM: ${{ github.event.number }}
run: echo "$PR_NUM" > pr_num.txt
- name: Upload the PR number
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pr_num
path: ./pr_num.txt
18 changes: 9 additions & 9 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
if: github.event_name == 'pull_request'

- name: "[PR] Upload master-screenshots-outcome"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: master-screenshots-outcome-${{ matrix.shardIndex }}
path: master-screenshots-outcome
Expand All @@ -90,21 +90,21 @@ jobs:
run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} -u 2>&1 | tee ./playwright-output
if: github.event_name == 'push'

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-screenshots-${{ matrix.shardIndex }}
path: test/playwright/__screenshots__/
retention-days: 1

- name: Upload blob report to GitHub Actions Artifacts
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: blob-report-${{ matrix.shardIndex }}
path: blob-report
retention-days: 1

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-output-${{ matrix.shardIndex }}
path: playwright-output
Expand Down Expand Up @@ -134,12 +134,12 @@ jobs:
- name: Merge into JSON Report
run: npx playwright merge-reports --reporter json ./all-blob-reports > playwright-results.json

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-report
path: playwright-report/

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-results-json
path: playwright-results.json
Expand All @@ -152,7 +152,7 @@ jobs:
pattern: playwright-screenshots-*
merge-multiple: true

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-screenshots
path: test/playwright/__screenshots__/
Expand All @@ -176,7 +176,7 @@ jobs:
if: github.event_name == 'pull_request'

- name: '[PR] Upload master-screenshots-outcome'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: master-screenshots-outcome
path: master-screenshots-outcome
Expand All @@ -193,7 +193,7 @@ jobs:
- name: Merge playwright output files
run: cat playwright-outputs/* > playwright-output

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: playwright-output
path: playwright-output
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: SARIF file
path: results.sarif
Expand Down