Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #726

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading