From 4c9f494ed30264ca251cd9685c59aa349f4291f0 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 4 Mar 2024 07:05:23 -0500 Subject: [PATCH] chore: update CI to use node 20 actions (#369) --- .github/workflows/aur-checker.yml | 4 ++-- .github/workflows/rust.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/aur-checker.yml b/.github/workflows/aur-checker.yml index 7a6d0ab..311de9d 100644 --- a/.github/workflows/aur-checker.yml +++ b/.github/workflows/aur-checker.yml @@ -11,6 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install AUR package - run: ./scripts/check-aur.sh \ No newline at end of file + run: ./scripts/check-aur.sh diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 66f6dd0..f092a81 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,9 +15,9 @@ jobs: steps: - run: rustup component add clippy rustfmt - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Rust Cache - uses: Swatinem/rust-cache@v2.5.0 + uses: Swatinem/rust-cache@v2 - name: Check format run: cargo fmt --all -- --check - name: Check @@ -34,13 +34,13 @@ jobs: matrix: target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Rust Cache - uses: Swatinem/rust-cache@v2.5.0 + uses: Swatinem/rust-cache@v2 with: prefix-key: v0-rust-${{ matrix.target }} - name: Install Cross - uses: baptiste0928/cargo-install@v1 + uses: baptiste0928/cargo-install@v2 with: crate: cross - name: Check