Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: upgrade upload-actifact@v4 #6075

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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-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
Loading