Skip to content

Commit 4d8ff12

Browse files
authored
Merge pull request #29 from atsyplenkov/refactor
update deps
2 parents 9a385dc + 408c104 commit 4d8ff12

6 files changed

Lines changed: 285 additions & 202 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Dependency Audit
2+
3+
on:
4+
push:
5+
branches: [ "main", "master" ]
6+
pull_request:
7+
branches: [ "main", "master" ]
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
dependency-audit:
15+
name: RustSec Audit
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20+
- name: Install Rust stable toolchain
21+
run: |
22+
rustup toolchain install stable --profile minimal --no-self-update
23+
rustup default stable
24+
- name: Install cargo-audit
25+
run: cargo install cargo-audit --locked --version 0.22.1
26+
- name: Audit Cargo.lock
27+
run: cargo audit

0 commit comments

Comments
 (0)