Skip to content

Commit

Permalink
Upgrade Rust to 1.82
Browse files Browse the repository at this point in the history
  • Loading branch information
eaufavor committed Oct 18, 2024
1 parent 2d58649 commit bca84ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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)

0 comments on commit bca84ec

Please sign in to comment.