From 80e47b83effc77f328b00ab1252eabf897784722 Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 8 Jul 2025 06:47:05 -0400 Subject: [PATCH] github actions: Update recommended Rust to 1.88.0 Signed-off-by: mulhern --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 6 +++--- .github/workflows/nightly.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index 2e5ea5ce..74708ba0 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -41,7 +41,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Check out ci repo uses: actions/checkout@v4 with: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5018978b..f679abf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: format: env: TASK: fmt-ci - TOOLCHAIN: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git @@ -37,7 +37,7 @@ jobs: lint: env: TASK: clippy - TOOLCHAIN: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git @@ -55,7 +55,7 @@ jobs: typos: env: TASK: check-typos - TOOLCHAIN: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 078fc08f..08bd4be7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -19,7 +19,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Install dependencies run: sudo apt-get install libcryptsetup-dev - uses: baptiste0928/cargo-install@v3 @@ -51,7 +51,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Check out ci repo uses: actions/checkout@v4 with: @@ -86,10 +86,10 @@ jobs: uses: obi1kenobi/cargo-semver-checks-action@v2 with: verbose: true - rust-toolchain: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + rust-toolchain: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN manifest-path: libcryptsetup-rs-sys - name: Do semantic version checks uses: obi1kenobi/cargo-semver-checks-action@v2 with: verbose: true - rust-toolchain: 1.87.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + rust-toolchain: 1.88.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN