aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorYuchen Wu <[email protected]>2024-10-18 11:35:20 -0700
committerYuchen Wu <[email protected]>2024-10-18 13:57:05 -0700
commit65bb50ea24d892358b99367120d2b458b057d88e (patch)
tree39ef5bb266f9c93e57408d52861bc79b3a7e8180 /.github/workflows/build.yml
parentfbc93f86672ec8ffede04394f8eb70bd5890d4d6 (diff)
downloadpingora-rust-1.81.tar.gz
pingora-rust-1.81.zip
Upgrade the latest Rust to 1.81rust-1.81
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 01c90c1..b34f4b2 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,7 +6,7 @@ jobs:
pingora:
strategy:
matrix:
- toolchain: [nightly, 1.72, 1.80.0]
+ toolchain: [nightly, 1.72, 1.81.0]
runs-on: ubuntu-latest
# Only run on "pull_request" event for external PRs. This is to avoid
# duplicate builds for PRs created from internal branches.
@@ -46,8 +46,8 @@ jobs:
- name: Run cargo clippy
run: |
- [[ ${{ matrix.toolchain }} != 1.80 ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings
+ [[ ${{ matrix.toolchain }} != 1.81.0 ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings
- name: Run cargo audit
run: |
- [[ ${{ matrix.toolchain }} != 1.80.0 ]] || (cargo install cargo-audit && cargo audit)
+ [[ ${{ matrix.toolchain }} != 1.81.0 ]] || (cargo install cargo-audit && cargo audit)