diff options
author | Yuchen Wu <[email protected]> | 2024-06-14 13:47:25 -0700 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-06-14 14:37:10 -0700 |
commit | 1d32d069cde2d4a8ca3f0b3b31035982b310f543 (patch) | |
tree | dd29f9c1874df3b707304abbfe4fe8577d37ee04 /.github | |
parent | 4d6690ec53d598ee8da68feddece71a1aa80b012 (diff) | |
download | pingora-1d32d069cde2d4a8ca3f0b3b31035982b310f543.tar.gz pingora-1d32d069cde2d4a8ca3f0b3b31035982b310f543.zip |
Pin the stable Rust version
To avoid CI failure due to new clippy rules introduced by newer Rust
releases.
We will manually update the Rust version here after each Rust release.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cad143..de737fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: # TODO: add nightly - toolchain: [stable, 1.72] + toolchain: [1.78, 1.72] 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. |