From ce6d0bb2ed29a27782acd21017d6a7524d36ebba Mon Sep 17 00:00:00 2001 From: Johann150 Date: Mon, 8 Jan 2024 20:06:05 +0100 Subject: [PATCH] fix minimum rust version for rustfmt CI This was forgotten in commit d8486b5c21d658887dd61ff24c20b5afce87011c. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d19304d3..91b700ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - rust: ["1.40.0", "stable", "beta", "nightly"] + rust: ["1.46.0", "stable", "beta", "nightly"] name: Rustfmt (${{ matrix.rust }}) steps: - uses: actions/checkout@v2