From 10f3597185a396fd4c19cf1977af17669e7e6b6e Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 28 Aug 2023 10:27:16 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.72.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 68cd174..f1896ae 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.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.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 1085bfc..6bbda50 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,19 +24,19 @@ jobs: include: # MANDATORY CHECKS USING CURRENT DEVELOPMENT COMPILER - components: rustfmt - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: fmt-ci - components: clippy - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: clippy - components: cargo - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: build - components: cargo - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: test - components: cargo - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: docs-ci # MANDATORY TESTING USING LOWEST SUPPORTED COMPILER - components: cargo @@ -87,7 +87,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - name: Check out ci repo run: git clone https://github.com/stratis-storage/ci.git - name: Run ${{ matrix.task }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9ccd49c..5b652d3 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.71.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.72.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