From 4dbb4f06f886450e5186664eaea5aae1b59d0a0e Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Tue, 26 Mar 2024 11:57:49 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.77.0 Signed-off-by: Bryan Gurney --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 6 +++--- .github/workflows/nightly.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index 943881e8..c6309206 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.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.77.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 5421b6eb..0c07ddda 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: format: env: TASK: fmt-ci - TOOLCHAIN: 1.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.77.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.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.77.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.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.77.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 6250e935..0098397f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,7 +16,7 @@ jobs: matrix: include: - components: cargo - toolchain: 1.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.77.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.76.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.77.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