52
52
toolchain : ${{ matrix.toolchain }}
53
53
targets : ${{ matrix.target }}
54
54
- name : Cache build artifacts
55
- uses : Swatinem/rust-cache@v2.7.5
55
+ uses : Swatinem/rust-cache@v2.7.7
56
56
with :
57
57
key : ${{ matrix.target }}
58
58
- name : Check a package
@@ -104,7 +104,7 @@ jobs:
104
104
toolchain : ${{ matrix.toolchain }}
105
105
targets : ${{ matrix.target }}
106
106
- name : Cache build artifacts
107
- uses : Swatinem/rust-cache@v2.7.5
107
+ uses : Swatinem/rust-cache@v2.7.7
108
108
with :
109
109
key : ${{ matrix.target }}
110
110
- name : Run tests
@@ -130,7 +130,7 @@ jobs:
130
130
toolchain : stable
131
131
components : rustfmt
132
132
- name : Cache build artifacts
133
- uses : Swatinem/rust-cache@v2.7.5
133
+ uses : Swatinem/rust-cache@v2.7.7
134
134
- name : Check code formatted
135
135
run : cargo fmt -- --check
136
136
@@ -146,7 +146,7 @@ jobs:
146
146
toolchain : stable
147
147
components : clippy
148
148
- name : Cache build artifacts
149
- uses : Swatinem/rust-cache@v2.7.5
149
+ uses : Swatinem/rust-cache@v2.7.7
150
150
- name : Check no lint warnings
151
151
run : cargo clippy -- -D warnings
152
152
- name : Check no lint warnings (no default features)
@@ -163,7 +163,7 @@ jobs:
163
163
with :
164
164
toolchain : stable
165
165
- name : Cache build artifacts
166
- uses : Swatinem/rust-cache@v2.7.5
166
+ uses : Swatinem/rust-cache@v2.7.7
167
167
- name : Check no `rustdoc` lint warnings
168
168
run : RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items
169
169
@@ -178,6 +178,6 @@ jobs:
178
178
with :
179
179
toolchain : nightly
180
180
- name : Cache build artifacts
181
- uses : Swatinem/rust-cache@v2.7.5
181
+ uses : Swatinem/rust-cache@v2.7.7
182
182
- name : Run benchmarks
183
183
run : cargo bench
0 commit comments