-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): update actions following
Node.js
16 deprecation notice
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] # 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/[email protected] | ||
with: | ||
components: rustfmt, clippy | ||
|
||
|