From 5b03265cfb30219eb09cba42125683381ea6a49d Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 5 Feb 2025 13:30:13 +0100 Subject: [PATCH] Fix 'Fix lint' GHA (#18136) c.f. #18121 --------- Co-authored-by: Quentin Gliech --- .github/workflows/fix_lint.yaml | 2 +- changelog.d/18136.misc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/18136.misc diff --git a/.github/workflows/fix_lint.yaml b/.github/workflows/fix_lint.yaml index 909b0a847..d6aed8377 100644 --- a/.github/workflows/fix_lint.yaml +++ b/.github/workflows/fix_lint.yaml @@ -21,7 +21,7 @@ jobs: # We use nightly so that `fmt` correctly groups together imports, and # clippy correctly fixes up the benchmarks. toolchain: nightly-2022-12-01 - components: rustfmt + components: clippy, rustfmt - uses: Swatinem/rust-cache@v2 - name: Setup Poetry diff --git a/changelog.d/18136.misc b/changelog.d/18136.misc new file mode 100644 index 000000000..ed88c38ac --- /dev/null +++ b/changelog.d/18136.misc @@ -0,0 +1 @@ +Fix the 'Fix linting' GitHub Actions workflow.