Skip to content

Commit

Permalink
Merge pull request #770 from JuliaLang/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/upload-artifact-4

build(deps): Bump actions/upload-artifact from 3 to 4
  • Loading branch information
davidanthoff authored Jan 11, 2024
2 parents b4af147 + f1b190c commit fb07c98
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 fb07c98

Please sign in to comment.