Skip to content

Commit 58c6117

Browse files
committed
Made the CI workflow and justfile use the same toolchain as the source
1 parent 53cafc0 commit 58c6117

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
- name: Install Rust toolchain
2727
uses: dtolnay/rust-toolchain@master
2828
with:
29-
toolchain: nightly-2025-02-26
29+
toolchain: 1.83
3030
components: clippy, rustfmt
3131

3232
- name: Install protoc
33-
run: sudo apt-get install protobuf-compiler
33+
run: sudo provisioning/protoc.sh
3434

3535
- name: Setup just
3636
uses: extractions/setup-just@v2

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Makes sure the nightly-2025-02-26 toolchain is installed
2-
toolchain := "nightly-2025-02-26"
1+
# Makes sure the same toolchain as the source is installed
2+
toolchain := 1.83
33

44
fmt:
55
rustup toolchain install {{toolchain}} > /dev/null 2>&1 && \

0 commit comments

Comments
 (0)