Skip to content

Commit

Permalink
build(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
dependabot[bot] authored Mar 2, 2024
1 parent a2e93d5 commit 8b4ded4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
APPLE_PROVIDER_SHORT_NAME: ${{ secrets.APPLE_PROVIDER_SHORT_NAME }}
# Possibly set up some basic unit testing just to make sure parts render and none of the libraries are straight up breaking
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: tauri-${{ matrix.name }}
path: |
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
cache: "yarn"
- name: Generate updater file
run: node app/tauri/release-prep/release-prep.js
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: tauri-release
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,40 +62,40 @@ jobs:
sudo snap install snapcraft --classic
yarn lerna run build:snap --stream
- name: Upload windows all-in-one build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-all-in-one-${{ matrix.name }}
path: |
app/electron/dist/Pomatez-v+([0-9]).+([0-9]).+([0-9])-win-*.exe
- name: Upload ia32 builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-ia32-${{ matrix.name }}
path: |
app/electron/dist/Pomatez*ia32*.*
- name: Upload x64 builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-x64-${{ matrix.name }}
path: |
app/electron/dist/Pomatez*x64*.*
app/electron/dist/Pomatez*x86_64*.*
app/electron/dist/Pomatez*amd64*.*
- name: Upload arm64 builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-arm64-${{ matrix.name }}
path: |
app/electron/dist/Pomatez*arm64*.*
app/electron/dist/Pomatez*aarch64*.*
- name: Upload armv7l builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-armv7l-${{ matrix.name }}
path: |
app/electron/dist/Pomatez*armv7l*.*
- name: Upload autoupdaters
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-app-AutoUpdater-${{ matrix.name }}
path: |
Expand Down

0 comments on commit 8b4ded4

Please sign in to comment.