From 8852a19c34a44c3ac508173aaaff171e668f165d Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Wed, 21 Aug 2024 11:36:52 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.80.1 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 b45b085..ec5ea2f 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.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # 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 b50bda7..3f9c537 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.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: fmt-ci - components: clippy - toolchain: 1.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: clippy - components: cargo - toolchain: 1.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: build - components: cargo - toolchain: 1.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: test - components: cargo - toolchain: 1.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: docs-ci - components: cargo - toolchain: 1.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # 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 25ef605..92d2a2a 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.80.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.80.1 # 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