Skip to content

Commit

Permalink
ci: update actions/checkout from v2 to v3 in our GitHub workflows (#…
Browse files Browse the repository at this point in the history
…499)

## 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

<!--- Put an `x` in all the boxes that apply: -->

- [ ] ✨ 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 <[email protected]>
  • Loading branch information
nilsreichardt and astivi authored Jul 8, 2024
1 parent 1c6a3cd commit 91965f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/spell_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 91965f8

Please sign in to comment.