From 685ea7f16816dc74758bfc04a1e79ed6b6122778 Mon Sep 17 00:00:00 2001 From: Ian Chamberlain Date: Thu, 10 Aug 2023 09:07:08 -0400 Subject: [PATCH] Bump toolchain version by 1 day The old `cargo-3ds` we were using didn't care about the commit date being 05-30, but the new one used by the `test-runner` action does. Since the rustc version is one day older than the toolchain date, we should be able to work with just the 06-01 toolchain instead. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08c26f9..08c9a44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,8 @@ jobs: strategy: matrix: toolchain: - # Run against a "known good" nightly - - nightly-2023-05-31 + # Run against a "known good" nightly. Rustc version is 1 day behind the toolchain date + - nightly-2023-06-01 # Check for breakage on latest nightly - nightly @@ -58,7 +58,7 @@ jobs: strategy: matrix: toolchain: - - nightly-2023-05-31 + - nightly-2023-06-01 - nightly continue-on-error: ${{ matrix.toolchain == 'nightly' }} runs-on: ubuntu-latest