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] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 18, 2023
1 parent 4e8c47a commit f1b190c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
CARGO_TARGET_x86_64-unknown-linux-musl: ${{matrix.rustflags}}
CARGO_TARGET_i686-unknown-linux-musl: ${{matrix.rustflags}}
CARGO_TARGET_aarch64-unknown-linux-musl: ${{matrix.rustflags}}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: juliaup-${{matrix.label}}
path: |
Expand All @@ -216,7 +216,7 @@ jobs:
target/${{matrix.target}}/release/juliaup.exe
target/${{matrix.target}}/release/julialauncher.exe
target/${{matrix.target}}/release/julia.exe
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: juliainstaller-${{matrix.label}}
path: |
Expand Down Expand Up @@ -540,7 +540,7 @@ jobs:
tar -czvf ../../public/juliaup-${{ env.VERSION }}-i686-pc-windows-gnu-portable.tar.gz .
cd ../..
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: portable
path: public/*.*
Expand Down Expand Up @@ -637,11 +637,11 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: storepackage
path: storepackage\*.*
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: winappinstaller
path: target\msix\winappinstaller\Julia.appinstaller
Expand Down Expand Up @@ -691,7 +691,7 @@ jobs:
& azuresigntool sign -kvt "${{ secrets.AzureKeyVaultTenantId }}" -kvu "${{ secrets.AzureKeyVaultUrl }}" -kvi "${{ secrets.AzureKeyVaultClientId }}" -kvs "${{ secrets.AzureKeyVaultClientSecret }}" -kvc ${{ secrets.AzureKeyVaultCertName }} -tr http://timestamp.digicert.com -v $msiPath
}
shell: pwsh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: msiinstallers
path: target\msi\Julia*.msi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updateversiondb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Update Version DB
run: |
julia scripts/versiondb/updateversiondb.jl scriptoutputfolder >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: scriptoutput
path: scriptoutputfolder
Expand Down

0 comments on commit f1b190c

Please sign in to comment.