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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-${{ env.PKG_VERSION }}
path: /home/runner/work/release/release.tar.gz
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
coverage xml

- name: Upload geckodriver.log
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ failure() }}
with:
name: geckodriverlog
Expand All @@ -87,7 +87,7 @@ jobs:
mv latest-coverage.json coverage.json

- name: Upload Coverage Results as Build Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: coverage
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
npx playwright test --project=${{ matrix.project }}

- name: Upload Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
continue-on-error: true
with:
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
npx playwright test --project=${{ matrix.project }} -c playwright-legacy.config.js

- name: Upload Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
continue-on-error: true
with:
Expand Down
Loading