diff options
author | Yuchen Wu <[email protected]> | 2024-10-18 11:46:12 -0700 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-10-18 14:12:28 -0700 |
commit | cc30a606f167699f06d8927d2eab544be472634b (patch) | |
tree | 27cba86ab4f98a4e8d72ecc600670c8efe85d745 | |
parent | d46abae265882e618b0ef50a3132491eb1b6a3aa (diff) | |
download | pingora-rust-1.82.tar.gz pingora-rust-1.82.zip |
Upgrade Rust to 1.82rust-1.82
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b34f4b2..1504c01 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: pingora: strategy: matrix: - toolchain: [nightly, 1.72, 1.81.0] + toolchain: [nightly, 1.72, 1.82.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.81.0 ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings + [[ ${{ matrix.toolchain }} != 1.82.0 ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings - name: Run cargo audit run: | - [[ ${{ matrix.toolchain }} != 1.81.0 ]] || (cargo install cargo-audit && cargo audit) + [[ ${{ matrix.toolchain }} != 1.82.0 ]] || (cargo install cargo-audit && cargo audit) |