Skip to content

Commit

Permalink
Update checkout and toolchain actions
Browse files Browse the repository at this point in the history
GitHub is complaining about usage of old Node.js on every GitHub Actions
run:
> Node.js 12 actions are deprecated. For more information see:
> https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
> Please update the following actions to use Node.js 16: actions/checkout,
> actions-rs/toolchain, actions/checkout

Update the actions in question to get rid of those warnings.

Signed-off-by: Daniel Müller <[email protected]>
  • Loading branch information
danielocfb committed Oct 13, 2022
1 parent 40014c7 commit 2aaa5da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
# Please adjust README when bumping version.
rust: [stable, 1.58.1]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
uses: actions-rs/toolchain@v1.0.6
with:
profile: minimal
toolchain: ${{ matrix.rust }}
Expand Down

0 comments on commit 2aaa5da

Please sign in to comment.