Skip to content

Commit 5fc5671

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

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

.github/workflows/audit.yml

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,33 @@
1-
name: Security audit
1+
name: Audit
2+
23
on:
34
push:
4-
paths:
5+
paths:
56
- '**/Cargo.toml'
67
- '**/Cargo.lock'
8+
pull_request:
9+
branches:
10+
- main
711
schedule:
8-
- cron: '19 20 1 * *'
12+
- cron: '12 13 2 * *'
13+
914
jobs:
1015
audit:
1116
runs-on: ubuntu-latest
1217
steps:
18+
<<<<<<< Updated upstream
1319
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1420
- uses: actions-rs/audit-check@35b7b53b1e25b55642157ac01b4adceb5b9ebef3 # v1.2.0
21+
=======
22+
- name: Checkout
23+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
24+
25+
- name: Install cargo audit
26+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
27+
>>>>>>> Stashed changes
1528
with:
16-
token: ${{ secrets.GITHUB_TOKEN }}
29+
command: install
30+
args: --force cargo-audit
31+
32+
- name: Audit
33+
run: cargo audit --deny warnings

.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)