From c06661044832cf02992a19e9ab879c1d0884c366 Mon Sep 17 00:00:00 2001 From: Vladislav Markushin Date: Tue, 19 Dec 2023 18:24:56 -0300 Subject: [PATCH] use a newer image for linters, remove '+nightly' in cargo fmt check --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5ea372c9f..0b2b1c047 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: group: check-${{ github.ref }} cancel-in-progress: true container: - image: paritytech/ci-unified:bullseye-1.71.0-v20230727 + image: paritytech/ci-unified:bullseye-1.74.0-2023-11-01-v20231214 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -33,7 +33,7 @@ jobs: run: rustup show - name: Cargo fmt - run: cargo +nightly fmt --all -- --check + run: cargo fmt --all -- --check - uses: actions-rs/cargo@v1 name: "Udeps Installation"