From 2aaa5da2c42479f613646f1e6b7a0f5c4a86941c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Wed, 12 Oct 2022 11:27:09 -0700 Subject: [PATCH] Update checkout and toolchain actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ea23c478..5db654cb 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 }}