Skip to content

Commit 383e8be

Browse files
Bump actions/setup-node from 4.2.0 to 4.3.0
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.2.0 to 4.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-node/releases">actions/setup-node's releases</a>.</em></p> <blockquote> <h2>v4.3.0</h2> <h2>What's Changed</h2> <h3>Dependency updates</h3> <ul> <li>Upgrade <code>@​actions/glob</code> from 0.4.0 to 0.5.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1200">actions/setup-node#1200</a></li> <li>Upgrade <code>@​action/cache</code> from 4.0.0 to 4.0.2 by <a href="https://github.com/gowridurgad"><code>@​gowridurgad</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1251">actions/setup-node#1251</a></li> <li>Upgrade <code>@​vercel/ncc</code> from 0.38.1 to 0.38.3 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1203">actions/setup-node#1203</a></li> <li>Upgrade <code>@​actions/tool-cache</code> from 2.0.1 to 2.0.2 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1220">actions/setup-node#1220</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/gowridurgad"><code>@​gowridurgad</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-node/pull/1251">actions/setup-node#1251</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-node/compare/v4...v4.3.0">https://github.com/actions/setup-node/compare/v4...v4.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/setup-node/commit/cdca7365b2dadb8aad0a33bc7601856ffabcc48e"><code>cdca736</code></a> Bump <code>@​actions/tool-cache</code> from 2.0.1 to 2.0.2 (<a href="https://redirect.github.com/actions/setup-node/issues/1220">#1220</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/22c0e7494f4cf8e8133097a3fefafe255caf66eb"><code>22c0e74</code></a> Bump <code>@​vercel/ncc</code> from 0.38.1 to 0.38.3 (<a href="https://redirect.github.com/actions/setup-node/issues/1203">#1203</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/a7c2d9473e135474f9c8e6d48969d1d90f950ea1"><code>a7c2d94</code></a> actions/cache upgrade (<a href="https://redirect.github.com/actions/setup-node/issues/1251">#1251</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/802632921f8532d2409ae6eac3313b6f81f11122"><code>8026329</code></a> Bump <code>@​actions/glob</code> from 0.4.0 to 0.5.0 (<a href="https://redirect.github.com/actions/setup-node/issues/1200">#1200</a>)</li> <li>See full diff in <a href="https://github.com/actions/setup-node/compare/v4.2.0...v4.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=4.2.0&new-version=4.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
1 parent 9760f5b commit 383e8be

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4.2.0
15+
- uses: actions/setup-node@v4.3.0
1616
with:
1717
node-version: "20.x"
1818
- run: npm install && npm run lint

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- windows-latest
2929
steps:
3030
- uses: actions/checkout@v4
31-
- uses: actions/setup-node@v4.2.0
31+
- uses: actions/setup-node@v4.3.0
3232
with:
3333
node-version: "20.x"
3434
- run: .github/workflows/build-and-test.sh
@@ -51,7 +51,7 @@ jobs:
5151
- almalinux:9
5252
steps:
5353
- uses: actions/checkout@v4
54-
- uses: actions/setup-node@v4.2.0
54+
- uses: actions/setup-node@v4.3.0
5555
with:
5656
node-version: "20.x"
5757
- run: .github/workflows/build-and-test.sh
@@ -80,7 +80,7 @@ jobs:
8080
- jazzy
8181
steps:
8282
- uses: actions/checkout@v4
83-
- uses: actions/setup-node@v4.2.0
83+
- uses: actions/setup-node@v4.3.0
8484
with:
8585
node-version: "20.x"
8686
- run: .github/workflows/build-and-test.sh
@@ -151,7 +151,7 @@ jobs:
151151
runs-on: ubuntu-latest
152152
steps:
153153
- uses: actions/checkout@v4
154-
- uses: actions/setup-node@v4.2.0
154+
- uses: actions/setup-node@v4.3.0
155155
with:
156156
node-version: "20.x"
157157
- run: .github/workflows/build-and-test.sh
@@ -171,7 +171,7 @@ jobs:
171171
image: ubuntu:24.04
172172
steps:
173173
- uses: actions/checkout@v4
174-
- uses: actions/setup-node@v4.2.0
174+
- uses: actions/setup-node@v4.3.0
175175
with:
176176
node-version: "20.x"
177177
- run: .github/workflows/build-and-test.sh
@@ -186,7 +186,7 @@ jobs:
186186
image: rostooling/setup-ros-docker:ubuntu-noble-latest
187187
steps:
188188
- uses: actions/checkout@v4
189-
- uses: actions/setup-node@v4.2.0
189+
- uses: actions/setup-node@v4.3.0
190190
with:
191191
node-version: "20.x"
192192
- run: .github/workflows/build-and-test.sh
@@ -204,7 +204,7 @@ jobs:
204204
- ubuntu:24.04
205205
steps:
206206
- uses: actions/checkout@v4
207-
- uses: actions/setup-node@v4.2.0
207+
- uses: actions/setup-node@v4.3.0
208208
with:
209209
node-version: "20.x"
210210
- run: .github/workflows/build-and-test.sh

0 commit comments

Comments
 (0)