From e0afcea403a86bd58864d906a69498e3bf06a7b2 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Tue, 18 Jun 2024 11:38:32 -0400 Subject: [PATCH] github actions: update recommended Rust to 1.79.0 Signed-off-by: Bryan Gurney --- .github/workflows/cargo.yml | 2 +- .github/workflows/main.yml | 12 ++++++------ .github/workflows/nightly.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index 45a7bce..8acafd5 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.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.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 6a0154b..b157408 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,22 +24,22 @@ jobs: include: # MANDATORY CHECKS USING CURRENT DEVELOPMENT COMPILER - components: rustfmt - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: fmt-ci - components: clippy - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: clippy - components: cargo - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: build - components: cargo - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: test - components: cargo - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: docs-ci - components: cargo - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN task: check-typos # MANDATORY TESTING USING LOWEST SUPPORTED COMPILER - components: cargo diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 12645f3..17cd011 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -59,7 +59,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: cargo - toolchain: 1.78.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN + toolchain: 1.79.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