From f6f7623458a9bda80d416d720d6cb9f015e12a50 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Sat, 5 Oct 2024 16:09:54 +0200 Subject: [PATCH] fix: disable cargo-outdated, due to lockfile V4 not yet working --- .github/workflows/rust.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b2eb0dd..a27c64f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -67,14 +67,14 @@ jobs: - uses: dtolnay/rust-toolchain@clippy - run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic - outdated: - name: Outdated - runs-on: ubuntu-latest - if: github.event_name != 'pull_request' - timeout-minutes: 45 - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - uses: dtolnay/install@cargo-outdated - - run: cargo update - - run: cargo outdated --workspace --exit-code 1 + # outdated: + # name: Outdated + # runs-on: ubuntu-latest + # if: github.event_name != 'pull_request' + # timeout-minutes: 45 + # steps: + # - uses: actions/checkout@v4 + # - uses: dtolnay/rust-toolchain@stable + # - uses: dtolnay/install@cargo-outdated + # - run: cargo update + # - run: cargo outdated --workspace --exit-code 1