From 5a382445471f8e47dbdab1c65cf407753e54629e Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Thu, 16 Jan 2025 14:21:26 -0500 Subject: [PATCH] github actions: update recommended Rust to 1.84.0 Signed-off-by: Bryan Gurney --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 12 ++++++------ .github/workflows/nightly.yml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index f8db405b..9c93e172 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.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.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 35cd104b..702bdc73 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,19 +24,19 @@ jobs: matrix: include: - components: rustfmt - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile fmt-ci - components: clippy - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile clippy - components: cargo - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile build - components: cargo - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile docs - components: cargo - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile check-typos runs-on: ubuntu-20.04 steps: @@ -60,7 +60,7 @@ jobs: matrix: include: - toolchain: 1.74.0 # LOWEST SUPPORTED RUST TOOLCHAIN - - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + - toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9d8cae53..14c30b02 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,7 +16,7 @@ jobs: matrix: include: - components: cargo - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile audit # Allowed because a failure may occur after a new Rust stable # version is released. @@ -59,7 +59,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.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 @@ -87,4 +87,4 @@ jobs: uses: obi1kenobi/cargo-semver-checks-action@v2 with: verbose: true - rust-toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + rust-toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN