Skip to content

Commit

Permalink
Update github actions checkout to v4, update rust-toolchain for *-app…
Browse files Browse the repository at this point in the history
…le-darwin to stable
  • Loading branch information
chinsyo authored and eycorsican committed Oct 19, 2024
1 parent 5b70ec9 commit 8bc305c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -39,7 +39,7 @@ jobs:
- x86_64-pc-windows-gnu
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- x86_64-apple-darwin
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- x86_64-pc-windows-gnu
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -73,14 +73,14 @@ jobs:
- x86_64-apple-darwin
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

- name: install rust toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly
rust-version: stable

- name: install llvm
if: ${{ matrix.os == 'macos-latest' }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

Expand Down

0 comments on commit 8bc305c

Please sign in to comment.