From a5938daf7e7529ee3ff60e6ce72389e73e02dab3 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Wed, 12 Feb 2025 11:25:52 -0500 Subject: [PATCH] github actions: update recommended Rust to 1.84.1 Signed-off-by: Bryan Gurney --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 6 +++--- .github/workflows/nightly.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index e87feae0..ce9e881d 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -42,7 +42,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.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 afe3933d..30ac3617 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: format: env: TASK: fmt-ci - TOOLCHAIN: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.84.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git @@ -39,7 +39,7 @@ jobs: lint: env: TASK: clippy - TOOLCHAIN: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.84.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git @@ -59,7 +59,7 @@ jobs: typos: env: TASK: check-typos - TOOLCHAIN: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.84.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-22.04 steps: - name: Install git diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index a17db89a..bf993e15 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,7 +16,7 @@ jobs: matrix: include: - components: cargo - toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: make -f Makefile audit - components: clippy toolchain: stable @@ -61,7 +61,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.84.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 @@ -91,4 +91,4 @@ jobs: uses: obi1kenobi/cargo-semver-checks-action@v2 with: verbose: true - rust-toolchain: 1.84.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + rust-toolchain: 1.84.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN