Skip to content

Commit

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

Bump actions/checkout from 3 to 4
  • Loading branch information
StefanKarpinski authored Sep 6, 2023
2 parents 1c1b936 + a474283 commit 199cdb6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
rustflags:
toolchain: stable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: egor-tensin/setup-mingw@v2
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
rustflags:
toolchain: stable-i686-gnu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: egor-tensin/setup-mingw@v2
Expand Down Expand Up @@ -459,7 +459,7 @@ jobs:
environment: package
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install AzureSignTool
run: dotnet tool install --global AzureSignTool
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -560,7 +560,7 @@ jobs:
environment: package
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Wix
run: dotnet tool install --global wix
- name: Install Wix UI extensions
Expand Down Expand Up @@ -748,7 +748,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create output dirs
run: |
mkdir public
Expand Down Expand Up @@ -797,7 +797,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create output dirs
run: |
mkdir public
Expand Down Expand Up @@ -842,7 +842,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create output dirs
run: |
mkdir public
Expand Down Expand Up @@ -910,7 +910,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
features: selfupdate,binjuliainstaller,binjulialauncher
rustflags:
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
rustflags:
toolchain: stable-i686-gnu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: egor-tensin/setup-mingw@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/updateversiondb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
outputs:
versionDbIsUpdated: ${{ steps.runjuliascript.outputs.versionDbIsUpdated }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: 1.8
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.update-versiondb.outputs.versionDbIsUpdated == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download script output
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 199cdb6

Please sign in to comment.