Skip to content

Commit f5318f9

Browse files
committed
Fix toolchain in CI jobs to Rust v1.85.0, same as MSRV
1 parent 3d8554e commit f5318f9

12 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/cargo-doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- uses: actions-rust-lang/setup-rust-toolchain@v1
3030
with:
31-
toolchain: stable
31+
toolchain: 1.85.0
3232
- name: Install Protoc
3333
uses: arduino/setup-protoc@v3
3434
with:

.github/workflows/guide-templates.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: actions-rust-lang/setup-rust-toolchain@v1
3232
with:
33-
toolchain: stable
33+
toolchain: 1.85.0
3434
- name: Install Protoc
3535
uses: arduino/setup-protoc@v3
3636
with:

.github/workflows/integration.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
name: cosmos-nix
118118
- uses: actions-rust-lang/setup-rust-toolchain@v1
119119
with:
120-
toolchain: stable
120+
toolchain: 1.85.0
121121
- name: Install Protoc
122122
uses: arduino/setup-protoc@v3
123123
with:
@@ -159,7 +159,7 @@ jobs:
159159
name: cosmos-nix
160160
- uses: actions-rust-lang/setup-rust-toolchain@v1
161161
with:
162-
toolchain: stable
162+
toolchain: 1.85.0
163163
- name: Install Protoc
164164
uses: arduino/setup-protoc@v3
165165
with:
@@ -206,7 +206,7 @@ jobs:
206206
name: cosmos-nix
207207
- uses: actions-rust-lang/setup-rust-toolchain@v1
208208
with:
209-
toolchain: stable
209+
toolchain: 1.85.0
210210
- name: Install Protoc
211211
uses: arduino/setup-protoc@v3
212212
with:
@@ -253,7 +253,7 @@ jobs:
253253
name: cosmos-nix
254254
- uses: actions-rust-lang/setup-rust-toolchain@v1
255255
with:
256-
toolchain: stable
256+
toolchain: 1.85.0
257257
- name: Install Protoc
258258
uses: arduino/setup-protoc@v3
259259
with:
@@ -299,7 +299,7 @@ jobs:
299299
name: cosmos-nix
300300
- uses: actions-rust-lang/setup-rust-toolchain@v1
301301
with:
302-
toolchain: stable
302+
toolchain: 1.85.0
303303
- name: Install Protoc
304304
uses: arduino/setup-protoc@v3
305305
with:
@@ -347,7 +347,7 @@ jobs:
347347
name: cosmos-nix
348348
- uses: actions-rust-lang/setup-rust-toolchain@v1
349349
with:
350-
toolchain: stable
350+
toolchain: 1.85.0
351351
- name: Install Protoc
352352
uses: arduino/setup-protoc@v3
353353
with:

.github/workflows/misbehaviour.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install Rust
8080
uses: actions-rust-lang/setup-rust-toolchain@v1
8181
with:
82-
toolchain: stable
82+
toolchain: 1.85.0
8383
- name: Install Protoc
8484
uses: arduino/setup-protoc@v3
8585
with:
@@ -135,7 +135,7 @@ jobs:
135135
- name: Install Rust
136136
uses: actions-rust-lang/setup-rust-toolchain@v1
137137
with:
138-
toolchain: stable
138+
toolchain: 1.85.0
139139
- name: Install Protoc
140140
uses: arduino/setup-protoc@v3
141141
with:
@@ -191,7 +191,7 @@ jobs:
191191
- name: Install Rust
192192
uses: actions-rust-lang/setup-rust-toolchain@v1
193193
with:
194-
toolchain: stable
194+
toolchain: 1.85.0
195195
- name: Install Protoc
196196
uses: arduino/setup-protoc@v3
197197
with:
@@ -247,7 +247,7 @@ jobs:
247247
- name: Install Rust
248248
uses: actions-rust-lang/setup-rust-toolchain@v1
249249
with:
250-
toolchain: stable
250+
toolchain: 1.85.0
251251
- name: Install Protoc
252252
uses: arduino/setup-protoc@v3
253253
with:

.github/workflows/multi-chains.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
name: cosmos-nix
9696
- uses: actions-rust-lang/setup-rust-toolchain@v1
9797
with:
98-
toolchain: stable
98+
toolchain: 1.85.0
9999
- name: Install Protoc
100100
uses: arduino/setup-protoc@v3
101101
with:

.github/workflows/namada.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
name: cosmos-nix
6767
- uses: actions-rust-lang/setup-rust-toolchain@v1
6868
with:
69-
toolchain: stable
69+
toolchain: 1.85.0
7070
- name: Install libudev
7171
run: sudo apt-get update && sudo apt-get -y install libudev-dev
7272
- name: Install Protoc
@@ -153,7 +153,7 @@ jobs:
153153
echo "NAMADA_REPO_PATH=$(pwd)/namada" >> "$GITHUB_ENV"
154154
- uses: actions-rust-lang/setup-rust-toolchain@v1
155155
with:
156-
toolchain: stable
156+
toolchain: 1.85.0
157157
- name: Install libudev
158158
run: sudo apt-get update && sudo apt-get -y install libudev-dev
159159
- name: Install Protoc

.github/workflows/publish-dry-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions-rust-lang/setup-rust-toolchain@v1
1515
with:
16-
toolchain: stable
16+
toolchain: 1.85.0
1717
- uses: katyo/publish-crates@v2
1818
with:
1919
dry-run: true

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions-rust-lang/setup-rust-toolchain@v1
1515
with:
16-
toolchain: stable
16+
toolchain: 1.85.0
1717
- name: Install Protoc
1818
uses: arduino/setup-protoc@v3
1919
with:

.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v4
4141
- uses: actions-rust-lang/setup-rust-toolchain@v1
4242
with:
43-
toolchain: stable
43+
toolchain: 1.85.0
4444
- uses: actions-rs/cargo@v1
4545
with:
4646
command: fmt
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353
- uses: actions-rust-lang/setup-rust-toolchain@v1
5454
with:
55-
toolchain: stable
55+
toolchain: 1.85.0
5656
components: clippy
5757
- name: Install Protoc
5858
uses: arduino/setup-protoc@v3
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/checkout@v4
7171
- uses: actions-rust-lang/setup-rust-toolchain@v1
7272
with:
73-
toolchain: stable
73+
toolchain: 1.85.0
7474
components: clippy
7575
- name: Install Protoc
7676
uses: arduino/setup-protoc@v3
@@ -89,7 +89,7 @@ jobs:
8989
- uses: actions/checkout@v4
9090
- uses: actions-rust-lang/setup-rust-toolchain@v1
9191
with:
92-
toolchain: stable
92+
toolchain: 1.85.0
9393
- name: Install Protoc
9494
uses: arduino/setup-protoc@v3
9595
with:
@@ -111,7 +111,7 @@ jobs:
111111
- uses: actions/checkout@v4
112112
- uses: actions-rust-lang/setup-rust-toolchain@v1
113113
with:
114-
toolchain: stable
114+
toolchain: 1.85.0
115115
- name: Install Protoc
116116
uses: arduino/setup-protoc@v3
117117
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Integration tests][test-image]][test-link]
99
[![Apache 2.0 Licensed][license-image]][license-link]
1010
![Rust Stable][rustc-image]
11-
![Rust 1.84+][rustc-version]
11+
![Rust 1.85+][rustc-version]
1212

1313
Rust implementation of an Inter-Blockchain Communication (IBC) relayer.
1414

0 commit comments

Comments
 (0)