aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorEdward Wang <[email protected]>2024-08-16 13:21:20 -0700
committerEdward Wang <[email protected]>2024-08-19 20:23:44 -0700
commitd425379ae35b4265b23acdc829c29f0776a91c1d (patch)
treec5acead7b4e9dd038392f7de8f18df033c61ea3a /.github/workflows
parentb0bd0fb0c9357e0edc6b7732116e268c934eabaf (diff)
downloadpingora-d425379ae35b4265b23acdc829c29f0776a91c1d.tar.gz
pingora-d425379ae35b4265b23acdc829c29f0776a91c1d.zip
Edit github workflow to run audit on latest stable only
cargo-audit now has an MSRV of 1.74 > ours. We only need to run audit on at least one toolchain, anyhow.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ffd8c71..9fa1390 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -50,4 +50,4 @@ jobs:
- name: Run cargo audit
run: |
- [[ ${{ matrix.toolchain }} == nightly ]] || (cargo install cargo-audit && cargo audit)
+ [[ ${{ matrix.toolchain }} != 1.80.0 ]] || (cargo install cargo-audit && cargo audit)