Skip to content

Commit c000a29

Browse files
committed
Merge pull request #399 from brave/update-actions
Update github actions
2 parents eb96ef4 + 6d1ec90 commit c000a29

File tree

4 files changed

+29
-43
lines changed

4 files changed

+29
-43
lines changed

.github/workflows/audit.yml

-16
This file was deleted.

.github/workflows/audit_new.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Audit
2+
3+
on:
4+
push:
5+
paths:
6+
- '**/Cargo.toml'
7+
- '**/Cargo.lock'
8+
pull_request:
9+
branches:
10+
- main
11+
schedule:
12+
- cron: '12 13 2 * *'
13+
14+
jobs:
15+
audit:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20+
21+
- name: Install cargo audit
22+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
23+
with:
24+
command: install
25+
args: --force cargo-audit
26+
27+
- name: Audit
28+
run: cargo audit --deny warnings

.github/workflows/lint.yml

-26
This file was deleted.

.github/workflows/nostd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
rust: [1.74.1, stable]
16+
rust: [stable]
1717
os: [ubuntu-latest]
1818

1919
env:

0 commit comments

Comments
 (0)