From c86deb3a0e1b7e52f6e7714a0a0c9b93e2423ff1 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 28 Oct 2024 09:43:38 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.82.0 Signed-off-by: Bryan Gurney --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 12 ++++++------ .github/workflows/nightly.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index 0e7f2be..0090f23 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -38,7 +38,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Check out ci repo run: git clone https://github.com/stratis-storage/ci.git - name: Run comparisons of version specs with available Fedora packages diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f472c8..61e6d07 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,22 +24,22 @@ jobs: include: # MANDATORY CHECKS USING CURRENT DEVELOPMENT COMPILER - components: rustfmt - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: fmt-ci - components: clippy - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: clippy - components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: build - components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: test - components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: docs-ci - components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: check-typos # MANDATORY TESTING USING LOWEST SUPPORTED COMPILER - components: cargo diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 487d70d..58ac419 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -59,7 +59,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.81.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Check out ci repo run: git clone https://github.com/stratis-storage/ci.git - name: Run comparisons of version specs with available Fedora packages