From 42eb6ac6a93120c1a492e9dacd84c7e8bc46ecf0 Mon Sep 17 00:00:00 2001 From: simon-wh Date: Mon, 21 Oct 2024 16:58:10 +0200 Subject: [PATCH] Update used actions in CI --- .github/workflows/test.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5605dc..7072156 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: submodules: true - name: Setup Build Environment @@ -18,12 +18,10 @@ jobs: sudo apt update sudo apt install libudev-dev libhidapi-dev - name: Setup rust toolchain - uses: actions-rs/toolchain@v1 - with: - override: true + uses: dtolnay/rust-toolchain@stable - uses: davidB/rust-cargo-make@v1 with: - version: 0.35.16 - - uses: Swatinem/rust-cache@v1 + version: 0.37.23 + - uses: Swatinem/rust-cache@v2 - name: Run tests run: cargo make test-flow