Skip to content

Commit

Permalink
⬆️ Updates actions/setup-node action to v4
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 27, 2025
1 parent ed6bc0c commit 54f1fa5
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"

Check warning on line 24 in .github/workflows/broken-links.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (NVMRC)

Check warning on line 24 in .github/workflows/broken-links.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (nvmrc)
id: nvm

- uses: actions/setup-node@v2.1.4
- uses: actions/setup-node@v4.2.0
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

Check warning on line 29 in .github/workflows/broken-links.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (NVMRC)

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
restore-keys: npm-v14-${{ runner.os }}-${{ github.ref }}-

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
restore-keys: npm-v14-${{ runner.os }}-${{ github.ref }}-

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
restore-keys: npm-v12-${{ runner.os }}-${{ github.ref }}-

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12.x

Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
restore-keys: npm-v10-${{ runner.os }}-${{ github.ref }}-

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 10.x

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "12"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
key: npm-v14-${{ runner.os }}-refs/heads/master-${{ hashFiles('package.json') }}

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x
registry-url: https://registry.npmjs.org
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
- uses: actions/setup-node@v4

- uses: actions/cache@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
npm-v14-${{ runner.os }}-refs/heads/master-
- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
npm-v14-${{ runner.os }}-refs/heads/master-
- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
npm-v12-${{ runner.os }}-refs/heads/master-
- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12.x

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
npm-v10-${{ runner.os }}-refs/heads/master-
- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 10.x

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '*'
check-latest: true
Expand Down

0 comments on commit 54f1fa5

Please sign in to comment.