From 6f645f687e055b8abbe4c0f34873085aa6a23914 Mon Sep 17 00:00:00 2001 From: n-dusan Date: Thu, 6 Jun 2024 11:46:19 +0200 Subject: [PATCH] chore(build): update actions following `Node.js` 16 deprecation notice --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19bb4b2..dad9d74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,11 +21,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.STELAE_GITHUB_TOKEN }} - name: Install Just - uses: extractions/setup-just@v1 + uses: extractions/setup-just@v2 env: GITHUB_TOKEN: ${{ secrets.STELAE_GITHUB_TOKEN }} - - uses: taiki-e/install-action@v1 + - uses: taiki-e/install-action@v2 with: tool: nextest - name: Run tests (nextest) @@ -39,7 +39,9 @@ jobs: uses: actions/checkout@v4 - name: Install stable toolchain - uses: dtolnay/rust-toolchain@1.78 # Pin based on current `rust-version` in Cargo.toml. IMPORTANT: Upgrade version when `rust-version` changes. + # Pin based on current `rust-version` in Cargo.toml. + # IMPORTANT: Upgrade `dtolnay/rust-toolchain@*` version when `rust-version` changes. + uses: dtolnay/rust-toolchain@1.78 with: components: rustfmt, clippy