Skip to content

Commit 6d1e0d4

Browse files
authored
Merge branch 'master' into deficake/upgrade-time
2 parents 3365fe2 + f935c2f commit 6d1e0d4

File tree

13 files changed

+491
-31
lines changed

13 files changed

+491
-31
lines changed
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
name: Security audit
22
on:
33
schedule:
4-
- cron: "0 8 * * *"
4+
- cron: '0 8 * * *'
55
push:
66
paths:
7-
- "**/Cargo.*"
7+
- '**/Cargo.toml'
8+
- '**/Cargo.lock'
9+
pull_request:
10+
811
jobs:
912
security_audit:
1013
runs-on: ubuntu-latest
1114
steps:
12-
- uses: actions/checkout@v4
13-
- uses: rustsec/audit-check@v1
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
- name: Run security audit
18+
uses: rustsec/audit-check@v2.0.0
1419
with:
1520
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
.*.swp
22
target
3-
Cargo.lock
43
/.idea

0 commit comments

Comments
 (0)