Skip to content

Commit 4d2f2a3

Browse files
committed
chore(ci): updating rust version
1 parent c895611 commit 4d2f2a3

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/ci.yml.liquid

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ jobs:
1919
- name: Checkout Code
2020
uses: actions/checkout@v4
2121

22-
- uses: dtolnay/rust-toolchain@nightly
22+
- name: Install Rust
23+
uses: actions-rs/toolchain@v1
2324
with:
24-
toolchain: nightly-2024-10-13
25+
toolchain: nightly-2025-10-20
2526
components: rustfmt
2627

2728
- name: Check Formatting
28-
run: cargo fmt -- --check
29+
run: cargo +nightly-2025-10-20 fmt -- --check
2930

3031
lint:
3132
timeout-minutes: 120
@@ -46,9 +47,10 @@ jobs:
4647
- name: Install Solidity Dependencies
4748
run: forge soldeer update -d
4849

49-
- uses: dtolnay/rust-toolchain@nightly
50+
- name: Install Rust
51+
uses: actions-rs/toolchain@v1
5052
with:
51-
toolchain: nightly-2024-10-13
53+
toolchain: nightly-2025-10-20
5254
components: clippy
5355

5456
- uses: swatinem/rust-cache@v2
@@ -82,9 +84,10 @@ jobs:
8284
- name: Install Solidity Dependencies
8385
run: forge soldeer update -d
8486

85-
- uses: dtolnay/rust-toolchain@nightly
87+
- name: Install Rust
88+
uses: actions-rs/toolchain@v1
8689
with:
87-
toolchain: nightly-2024-10-13
90+
toolchain: nightly-2025-10-20
8891
components: clippy
8992

9093
- uses: swatinem/rust-cache@v2

.github/workflows/verify-template.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ jobs:
3333
version: nightly
3434
- name: Show forge version
3535
run: forge --version
36-
- uses: dtolnay/rust-toolchain@stable
36+
- name: Install Rust
37+
uses: actions-rs/toolchain@v1
3738
with:
38-
toolchain: stable
39+
toolchain: nightly-2025-10-20
3940
- name: Install protobuf compiler
4041
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
4142
- run: |

0 commit comments

Comments
 (0)