File tree 1 file changed +12
-9
lines changed 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -192,23 +192,25 @@ jobs:
192
192
# than allows is no problem either if it comes to that.
193
193
continue-on-error : true
194
194
195
- cargo-deny :
195
+ # This job is not required for PR auto-merge, so that sudden announcement of a
196
+ # new advisory does not keep otherwise OK pull requests from being integrated.
197
+ cargo-deny-advisories :
196
198
runs-on : ubuntu-latest
197
199
198
- strategy :
199
- matrix :
200
- checks :
201
- - advisories
202
- - bans licenses sources
200
+ steps :
201
+ - uses : actions/checkout@v4
202
+ - uses : EmbarkStudios/cargo-deny-action@v2
203
+ with :
204
+ command : check advisories
203
205
204
- # Prevent sudden announcement of a new advisory from failing ci :
205
- continue -on-error : ${{ matrix.checks == 'advisories' }}
206
+ cargo-deny :
207
+ runs -on: ubuntu-latest
206
208
207
209
steps :
208
210
- uses : actions/checkout@v4
209
211
- uses : EmbarkStudios/cargo-deny-action@v2
210
212
with :
211
- command : check ${{ matrix.checks }}
213
+ command : check bans licenses sources
212
214
213
215
wasm :
214
216
name : WebAssembly
@@ -300,6 +302,7 @@ jobs:
300
302
# List all jobs that are intended NOT to block PR auto-merge here.
301
303
EXPECTED_NONBLOCKING_JOBS : |-
302
304
test-fixtures-windows
305
+ cargo-deny-advisories
303
306
wasm
304
307
tests-pass
305
308
You can’t perform that action at this time.
0 commit comments