From 869995fcd1ba0ff4ef57bc2be9ce253ff182bed3 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Tue, 19 Sep 2023 10:04:18 -0600 Subject: [PATCH] ci: Update Actions - Update actions/checkout to v4 - Remove use of actions-rs Signed-off-by: Tim Crawford --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6035868..7d02ce8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,21 +8,20 @@ jobs: lint: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Rust toolchain run: rustup show - - uses: actions-rs/clippy-check@v1 + - name: clippy env: BASEDIR: "." - with: - token: ${{ secrets.GITHUB_TOKEN }} + run: cargo clippy build: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies run: |