Skip to content

Commit 020cb4e

Browse files
committed
ci: upgrade upload-actifact@v4
1 parent 2b43e49 commit 020cb4e

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/build-extension.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
PR_NUMBER: ${{ github.event.number }}
6363
COMMIT_SHA: ${{ needs.sha-hash.outputs.SHORT_SHA }}
6464

65-
- uses: actions/upload-artifact@v3
65+
- uses: actions/upload-artifact@v4
6666
name: Upload ${{ matrix.target }} extension zip
6767
with:
6868
name: leather-${{ matrix.target }}-${{ needs.sha-hash.outputs.SHORT_SHA }}

.github/workflows/create-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
echo ${{ steps.semantic.outputs.new_release_patch_version }}
6262
6363
- name: Upload release notes
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
if: steps.semantic.outputs.new_release_published == 'true'
6666
with:
6767
name: release-notes

.github/workflows/development-extension.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
IS_PUBLISHING: true
4040
run: pnpm build
4141

42-
- uses: actions/upload-artifact@v3
42+
- uses: actions/upload-artifact@v4
4343
name: Upload build artifact
4444
with:
4545
name: leather-io

.github/workflows/playwright.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080

8181
- name: Upload blob report to GitHub Actions Artifacts
8282
if: always()
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
with:
85-
name: all-blob-reports
85+
name: blob-report-${{ matrix.shardIndex }}
8686
path: blob-report
8787
retention-days: 1
8888
if-no-files-found: error
@@ -96,10 +96,11 @@ jobs:
9696
- uses: actions/checkout@v4
9797

9898
- name: Download blob reports from GitHub Actions Artifacts
99-
uses: actions/download-artifact@v3
99+
uses: actions/download-artifact@v4
100100
with:
101-
name: all-blob-reports
102101
path: all-blob-reports
102+
pattern: blob-report-*
103+
merge-multiple: true
103104

104105
- name: Merge into HTML Report
105106
run: npx playwright merge-reports --reporter html ./all-blob-reports

.github/workflows/publish-extensions.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
5757
run: pnpm build
5858

59-
- uses: actions/upload-artifact@v3
59+
- uses: actions/upload-artifact@v4
6060
name: Upload build artifact
6161
with:
6262
name: leather-chromium-v${{ needs.extract-version.outputs.new_version }}
@@ -95,7 +95,7 @@ jobs:
9595

9696
run: pnpm build
9797

98-
- uses: actions/upload-artifact@v3
98+
- uses: actions/upload-artifact@v4
9999
name: Upload build artifact
100100
with:
101101
name: leather-firefox-v${{ needs.extract-version.outputs.new_version }}
@@ -120,7 +120,7 @@ jobs:
120120
- publish-firefox-extension
121121
steps:
122122
- name: Download extension build
123-
uses: actions/download-artifact@v3
123+
uses: actions/download-artifact@v4
124124
with:
125125
path: .
126126

0 commit comments

Comments
 (0)