From 2faa79d8374af0b8090fd46073d4040716d70fc6 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Thu, 14 Mar 2024 02:09:27 -0400 Subject: [PATCH] Update to Rust v1.75 in CI --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1bce24..ecc62e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,10 @@ jobs: include: - build: macos os: macos-latest - rust: 1.70.0 + rust: 1.75.0 - build: ubuntu os: ubuntu-latest - rust: 1.70.0 + rust: 1.75.0 steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.70.0 + toolchain: 1.75.0 default: true components: rustfmt - run: cargo fmt -- --check @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.70.0 + toolchain: 1.75.0 default: true components: clippy - uses: actions-rs/clippy-check@v1