File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,21 @@ jobs:
46
46
strategy :
47
47
matrix :
48
48
checks :
49
- - advisories
50
- - bans licenses sources
49
+ - ' security advisories'
50
+ - ' banned licenses and crates '
51
51
52
52
# Prevent sudden announcement of a new advisory from failing ci:
53
- continue-on-error : ${{ matrix.checks == 'advisories' }}
53
+ continue-on-error : ${{ matrix.checks == 'security advisories' }}
54
54
55
55
steps :
56
56
- uses : actions/checkout@v2
57
57
58
58
- uses : EmbarkStudios/cargo-deny-action@v1
59
+ if matrix.checks == 'security advisories'
59
60
with :
60
- command : check ${{ matrix.checks }}
61
+ command : check advisories
62
+
63
+ - uses : EmbarkStudios/cargo-deny-action@v1
64
+ if matrix.checks == 'banned licenses and crates'
65
+ with :
66
+ command : check bans licenses sources
You can’t perform that action at this time.
0 commit comments