From 542dd9c8dc3555eec12342d245e46da4c95db278 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Tue, 3 Dec 2024 11:40:49 -0500 Subject: [PATCH] github actions: update recommended Rust to 1.83.0 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 d1a41e89..23a9419c 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.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.83.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 f76869ab..e47f0195 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: format: env: TASK: fmt-ci - TOOLCHAIN: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-20.04 steps: - name: Install git @@ -39,7 +39,7 @@ jobs: lint: env: TASK: clippy - TOOLCHAIN: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-20.04 steps: - name: Install git @@ -59,7 +59,7 @@ jobs: typos: env: TASK: check-typos - TOOLCHAIN: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-20.04 steps: - name: Install git diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e44d2dab..cd5b370f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,7 +16,7 @@ jobs: matrix: include: - components: cargo - toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.83.0 # 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.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.83.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 @@ -91,4 +91,4 @@ jobs: uses: obi1kenobi/cargo-semver-checks-action@v2 with: verbose: true - rust-toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + rust-toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN