From 6f356017dd3d9997101ab094dcb493be15564e5d Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 9 Oct 2023 15:54:57 -0400 Subject: [PATCH] github actions: updated recommended Rust to 1.73.0 Signed-off-by: mulhern --- .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 a45ea27..cae5d71 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.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.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 cfefe00..2d2f009 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.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: fmt-ci - components: clippy - toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: clippy - components: cargo - toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: build - components: cargo - toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: test - components: cargo - toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: docs-ci - components: cargo - toolchain: 1.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.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 5b652d3..5180d71 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.72.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.73.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