Skip to content

Commit

Permalink
ci: upgrade upload-actifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Jan 17, 2025
1 parent 2b43e49 commit 020cb4e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
PR_NUMBER: ${{ github.event.number }}
COMMIT_SHA: ${{ needs.sha-hash.outputs.SHORT_SHA }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload ${{ matrix.target }} extension zip
with:
name: leather-${{ matrix.target }}-${{ needs.sha-hash.outputs.SHORT_SHA }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo ${{ steps.semantic.outputs.new_release_patch_version }}
- name: Upload release notes
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: steps.semantic.outputs.new_release_published == 'true'
with:
name: release-notes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/development-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
IS_PUBLISHING: true
run: pnpm build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload build artifact
with:
name: leather-io
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ jobs:

- name: Upload blob report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: all-blob-reports
name: blob-report-${{ matrix.shardIndex }}
path: blob-report
retention-days: 1
if-no-files-found: error
Expand All @@ -96,10 +96,11 @@ jobs:
- uses: actions/checkout@v4

- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: all-blob-reports
path: all-blob-reports
pattern: blob-report-*
merge-multiple: true

- name: Merge into HTML Report
run: npx playwright merge-reports --reporter html ./all-blob-reports
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: pnpm build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload build artifact
with:
name: leather-chromium-v${{ needs.extract-version.outputs.new_version }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

run: pnpm build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload build artifact
with:
name: leather-firefox-v${{ needs.extract-version.outputs.new_version }}
Expand All @@ -120,7 +120,7 @@ jobs:
- publish-firefox-extension
steps:
- name: Download extension build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: .

Expand Down

0 comments on commit 020cb4e

Please sign in to comment.