Skip to content

Commit ae85e9b

Browse files
committed
ci(toolchain): use stable rust toolchain
1 parent e5458fa commit ae85e9b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/clippy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
rust: [nightly]
16+
rust: [stable]
1717
steps:
1818
- uses: actions/checkout/@v4
1919

2020
- name: Install Toolchain
2121
uses: dtolnay/rust-toolchain@master
2222
with:
23-
toolchain: nightly
23+
toolchain: stable
2424
components: clippy
2525

2626
- name: Rust Cache

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Fetch Repository
2121
uses: actions/checkout@v4
2222

23-
- name: Install Nightly Rust Toolchain
23+
- name: Install Stable Rust Toolchain
2424
uses: dtolnay/rust-toolchain@master
2525
with:
26-
toolchain: nightly
26+
toolchain: stable
2727

2828
- name: Rust version
2929
id: rustc-version
@@ -75,10 +75,10 @@ jobs:
7575
- name: Rust Cache
7676
uses: Swatinem/rust-cache@v2
7777

78-
- name: Install Nightly Rust Toolchain
78+
- name: Install Stable Rust Toolchain
7979
uses: dtolnay/rust-toolchain@master
8080
with:
81-
toolchain: nightly
81+
toolchain: stable
8282

8383
- name: Install jql
8484
uses: taiki-e/install-action@v2
@@ -155,10 +155,10 @@ jobs:
155155
- name: Checkout
156156
uses: actions/checkout@v4
157157

158-
- name: Install Nightly Rust Toolchain
158+
- name: Install Stable Rust Toolchain
159159
uses: dtolnay/rust-toolchain@master
160160
with:
161-
toolchain: nightly
161+
toolchain: stable
162162
targets: ${{ matrix.target }}
163163

164164
- name: Rust Cache

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macos-latest]
20-
rust: [nightly]
20+
rust: [stable]
2121
steps:
2222
- uses: actions/checkout/@v4
2323

2424
- name: Rust Toolchain
2525
uses: dtolnay/rust-toolchain@master
2626
with:
27-
toolchain: nightly
27+
toolchain: stable
2828

2929
- name: Rust Cache
3030
if: startsWith(matrix.os, 'ubuntu-')

0 commit comments

Comments
 (0)