Skip to content

Commit 100f63a

Browse files
authored
Merge pull request #913 from LIT-Protocol/fix/ci-align-workflows-with-e2e
chore(ci): align rust toolchain across workflows
2 parents 2a7997d + 1bbb82d commit 100f63a

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/prerelease.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ jobs:
4747
bun-version: latest
4848

4949
- name: Install rust
50-
uses: dtolnay/rust-toolchain@1.76.0
50+
uses: actions-rs/toolchain@v1
51+
with:
52+
toolchain: stable
53+
override: true
54+
components: rust-std
5155

5256
- name: Install wasm-pack
5357
uses: jetli/wasm-pack-action@v0.4.0

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,12 @@ jobs:
4242
bun-version: latest
4343

4444
- name: Install rust
45-
uses: dtolnay/rust-toolchain@1.76.0
46-
45+
uses: actions-rs/toolchain@v1
46+
with:
47+
toolchain: stable
48+
override: true
49+
components: rust-std
50+
4751
- name: Install wasm-pack
4852
uses: jetli/wasm-pack-action@v0.4.0
4953
with:

0 commit comments

Comments
 (0)