Skip to content

Commit c316949

Browse files
authored
Merge pull request #29 from EmbarkStudios/bwe/tryfix-deny-action
Attempt to fix build failure with cargo-deny-action
2 parents 634118e + 9ff61a7 commit c316949

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
runs-on: ubuntu-latest
102102
steps:
103103
- uses: actions/checkout@v3
104-
- uses: EmbarkStudios/cargo-deny-action@v1
104+
- uses: EmbarkStudios/cargo-deny-action@v2
105+
with:
106+
rust-version: "1.84.0"
105107

106108
publish-check:
107109
name: Publish check

deny.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ targets = [
99
all-features = true
1010

1111
[advisories]
12-
vulnerability = "deny"
13-
unmaintained = "warn"
12+
version = 2
1413
yanked = "deny"
1514
ignore = [
1615
]
@@ -116,11 +115,8 @@ github = []
116115

117116
[licenses]
118117
private = { ignore = true, registries = ["embark"] }
119-
unlicensed = "deny"
120-
allow-osi-fsf-free = "neither"
121118
# We want really high confidence when inferring licenses from text
122119
confidence-threshold = 0.92
123-
copyleft = "deny"
124120
allow = [
125121
# We skip our private workspace crates when doing license
126122
# checks, so you will need to assign a proper license

0 commit comments

Comments
 (0)