File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,14 @@ jobs:
102
102
- uses : actions/checkout@v3
103
103
- name : Install linux dependencies
104
104
run : sudo apt update && sudo apt install -y cargo clang libssl-dev llvm libudev-dev protobuf-compiler make
105
+ - name : Install Rust and Use It
106
+ shell : bash
107
+ run : |
108
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
109
+ . "$HOME/.cargo/env"
110
+ rustup toolchain install 1.81.0
111
+ rustup default 1.81.0
112
+ rustup show
105
113
- name : Install toolchain
106
114
uses : actions-rs/toolchain@v1
107
115
with :
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
163
163
// and set impl_version to 0. If only runtime
164
164
// implementation changes and behavior does not, then leave spec_version as
165
165
// is and increment impl_version.
166
- spec_version : 73102 ,
166
+ spec_version : 73103 ,
167
167
impl_version : 0 ,
168
168
apis : RUNTIME_API_VERSIONS ,
169
169
transaction_version : 24 ,
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
158
158
// and set impl_version to 0. If only runtime
159
159
// implementation changes and behavior does not, then leave spec_version as
160
160
// is and increment impl_version.
161
- spec_version : 73102 ,
161
+ spec_version : 73103 ,
162
162
impl_version : 0 ,
163
163
apis : RUNTIME_API_VERSIONS ,
164
164
transaction_version : 24 ,
You can’t perform that action at this time.
0 commit comments