From 129333b2b4ae9a6c87ef3d1815e807228a2793d3 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 6 May 2024 13:48:51 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.78.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 c003bbb1..7d43013c 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.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.78.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 970e751d..1e9b7771 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: format: env: TASK: fmt-ci - TOOLCHAIN: 1.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.78.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.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.78.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.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + TOOLCHAIN: 1.78.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 94b5c8bb..a899a77c 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,7 +16,7 @@ jobs: matrix: include: - components: cargo - toolchain: 1.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.78.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.77.2 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.78.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