From ceef20a6d07de710830e2ef5b338f55b6f303f42 Mon Sep 17 00:00:00 2001 From: Melvin Wang Date: Tue, 9 Apr 2024 17:40:25 -0700 Subject: [PATCH] ci: revert pinning of nightly rustfmt --- .github/workflows/code-formatting-check.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-formatting-check.yaml b/.github/workflows/code-formatting-check.yaml index 8deb8cd5..fe4ff92d 100644 --- a/.github/workflows/code-formatting-check.yaml +++ b/.github/workflows/code-formatting-check.yaml @@ -17,14 +17,12 @@ jobs: uses: actions/checkout@v4 - name: Install Rust Toolchain (Nightly) - # Need to temporarily pin nightly used for fmt because of upstream bug: https://github.com/rust-lang/rustfmt/issues/6082, https://github.com/rust-lang/rustfmt/issues/6099 - uses: dtolnay/rust-toolchain@master + uses: dtolnay/rust-toolchain@nightly with: - toolchain: nightly-2024-02-17 components: rustfmt - name: Run Cargo Format - run: cargo +nightly-2024-02-17 fmt --all -- --check + run: cargo +nightly fmt --all -- --check taplo-fmt: name: .toml Formatting Check