From bf3b97ebd7557d6b48b2433e6f1c0ecb442dd7bb Mon Sep 17 00:00:00 2001 From: Ron Kuris Date: Fri, 16 Feb 2024 14:02:36 -0800 Subject: [PATCH] Take out the updates step for now (#536) --- .github/workflows/ci.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 98dc6ad51..04b2a67b4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -102,29 +102,6 @@ jobs: - name: Clippy run: cargo clippy --tests --examples --benches --all-features -- -D warnings - upgrades: - needs: build - runs-on: ubuntu-latest - - steps: - - name: Restore Check Deps - id: cache-build-deps-restore - uses: actions/cache/restore@v3 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ needs.build.outputs.cache-key }} - - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@stable - - name: Cargo Edit - run: cargo install cargo-edit - - name: Cargo upgrade - run: cargo upgrade --locked - test: needs: build runs-on: ubuntu-latest