We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20535d commit 4ae1d8dCopy full SHA for 4ae1d8d
1 file changed
.github/workflows/release.yml
@@ -10,9 +10,15 @@ jobs:
10
release:
11
name: Release
12
runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: write
15
+ issues: write
16
steps:
17
- uses: actions/checkout@v4
18
- uses: dtolnay/rust-toolchain@stable
19
+ - uses: Swatinem/rust-cache@v2
20
+ with:
21
+ cache-on-failure: true
22
23
- name: Run all tests
24
run: |
@@ -27,6 +33,7 @@ jobs:
27
33
28
34
cargo install cargo-audit
29
35
cargo audit
36
+ continue-on-error: true # Don't fail on known RSA vulnerability
30
37
31
38
- name: Publish to crates.io
32
39
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
0 commit comments