We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a584525 commit 18d0583Copy full SHA for 18d0583
.github/workflows/test.yml
@@ -4,15 +4,15 @@ jobs:
4
test:
5
strategy:
6
matrix:
7
- rust-toolchain: [stable]
+ rust-toolchain: [1.83.0]
8
platform: [ubuntu-latest]
9
runs-on: ${{ matrix.platform }}
10
environment: test
11
steps:
12
- name: Checkout code
13
uses: actions/checkout@v4
14
- name: Install Rust
15
- uses: dtolnay/rust-toolchain@stable
+ uses: dtolnay/rust-toolchain@1.83.0
16
with:
17
toolchain: ${{ matrix.rust-toolchain }}
18
targets: wasm32-wasi
rust-toolchain.toml
@@ -1,3 +1,3 @@
1
[toolchain]
2
-channel = "stable"
+channel = "1.83.0"
3
targets = [ "wasm32-wasi" ]
0 commit comments