Skip to content

Commit fbd6803

Browse files
authored
ci: fix audit step
This was failing in the 2021 edition. See the discussion in TrueLayer/ginepro#25
1 parent cdb7f73 commit fbd6803

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/audit.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ jobs:
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v2
19+
# Ensure that the latest version of Cargo is installed
20+
- name: Install Rust
21+
uses: actions-rs/toolchain@v1
22+
with:
23+
toolchain: stable
24+
profile: minimal
25+
override: true
1926
- uses: actions-rs/audit-check@v1
2027
with:
2128
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)