From 91965f8dd1695182b6abb8be17b0c4c9a0c0299f Mon Sep 17 00:00:00 2001 From: Nils Reichardt Date: Mon, 8 Jul 2024 22:54:02 +0200 Subject: [PATCH] ci: update `actions/checkout` from v2 to v3 in our GitHub workflows (#499) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Node 12 is deprecated for GitHub Actions. This is the reason why we are getting a warning from GitHub: > Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. This PR updates `actions/checkout` from v2 to v3 which should fix the problem. ## Type of Change - [ ] โœจ New feature (non-breaking change which adds functionality) - [ ] ๐Ÿ› ๏ธ Bug fix (non-breaking change which fixes an issue) - [ ] โŒ Breaking change (fix or feature that would cause existing functionality to change) - [ ] ๐Ÿงน Code refactor - [x] โœ… Build configuration change - [ ] ๐Ÿ“ Documentation - [ ] ๐Ÿ—‘๏ธ Chore Co-authored-by: รlvaro Stivi --- .github/workflows/spell_check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/spell_check.yaml b/.github/workflows/spell_check.yaml index bfef58f8..ee9a43eb 100644 --- a/.github/workflows/spell_check.yaml +++ b/.github/workflows/spell_check.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Check spelling uses: zwaldowski/cspell-action@v1