aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index dbfa85b20..4b9c4c805 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -29,9 +29,10 @@ jobs:
29 - name: Cache cargo 29 - name: Cache cargo
30 uses: actions/cache@v1 30 uses: actions/cache@v1
31 with: 31 with:
32 path: ~/.cargo 32 path: ~/.cargo/
33 key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} 33 key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
34 34
35 - run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
35 - run: cargo install cargo-audit 36 - run: cargo install cargo-audit
36 - run: cargo audit 37 - run: cargo audit
37 38