From a771c64299a20c1459cec155c2d2e1657ee90381 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sun, 29 Sep 2024 14:39:52 -0700 Subject: [PATCH] fix: usage of `node12 which is deprecated` (#35) * chore: changes from formatting on save * fix: usage of `node12 which is deprecated` --- .github/workflows/lint.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 2788b80..81f10f3 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Select Rust toolchain with Clippy uses: actions-rs/toolchain@v1 with: @@ -23,6 +23,6 @@ jobs: components: clippy override: true - name: Use cache for Rust dependencies - uses: Swatinem/rust-cache@v1 + uses: Swatinem/rust-cache@v2 - name: Lint using Clippy - run: cargo clippy \ No newline at end of file + run: cargo clippy