Skip to content

Commit

Permalink
actions: use setup-node@v4 as v3 causes warning
Browse files Browse the repository at this point in the history
the "Yarn Linting" action causes a warning to appear about a deprecated
Node version. switch to actions/setup-node@v4, which is already in use
by the action building the web app for the firmware, to avoid this
warning.
  • Loading branch information
schlimmchen committed Sep 20, 2024
1 parent ea1592e commit 0bcbec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/yarnlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Node.js and yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
Expand Down

0 comments on commit 0bcbec1

Please sign in to comment.