Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
kyranjamie committed Apr 15, 2024
1 parent 4e1de2c commit fcc2f80
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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 @@ -35,7 +35,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-wallet
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/notify-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: curl -s https://addons.mozilla.org/api/v5/addons/addon/leather-wallet/versions/ | jq -r '.results[0].version' > firefox_version

- name: Upload latest Firefox version info
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firefox_version
path: firefox_version
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
EOF
- name: Upload latest Chrome version info
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: chrome_version
path: chrome_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ 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
path: blob-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,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 @@ -91,7 +91,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 Down

0 comments on commit fcc2f80

Please sign in to comment.