Skip to content

Commit 922b3c5

Browse files
chore(deps): update actions/setup-node action to v7 (#154)
This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | major | `v6` → `v7` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/setup-node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/setup-node) | --- ### Release Notes <details> <summary>actions/setup-node (actions/setup-node)</summary> ### [`v7.0.0`](https://redirect.github.com/actions/setup-node/releases/tag/v7.0.0) [Compare Source](https://redirect.github.com/actions/setup-node/compare/v7.0.0...v7.0.0) ##### What's Changed ##### Enhancements: - Add cache-primary-key and cache-matched-key as outputs by [@&#8203;gowridurgad](https://redirect.github.com/gowridurgad) in [#&#8203;1577](https://redirect.github.com/actions/setup-node/pull/1577) - Migrate to ESM and upgrade dependencies by [@&#8203;gowridurgad](https://redirect.github.com/gowridurgad) in [#&#8203;1574](https://redirect.github.com/actions/setup-node/pull/1574) ##### Bug fixes: - Remove dummy NODE\_AUTH\_TOKEN export by [@&#8203;gowridurgad](https://redirect.github.com/gowridurgad) in [#&#8203;1558](https://redirect.github.com/actions/setup-node/pull/1558) - Only use `mirrorToken` in `getManifest` if it's provided by [@&#8203;deiga](https://redirect.github.com/deiga) in [#&#8203;1548](https://redirect.github.com/actions/setup-node/pull/1548) ##### Documentation updates: - Add documentation for publishing to npm with Trusted Publisher (OIDC) by [@&#8203;chiranjib-swain](https://redirect.github.com/chiranjib-swain) in [#&#8203;1536](https://redirect.github.com/actions/setup-node/pull/1536) - docs: Update restore-only cache documentation by [@&#8203;priya-kinthali](https://redirect.github.com/priya-kinthali) in [#&#8203;1550](https://redirect.github.com/actions/setup-node/pull/1550) - docs: Update caching recommendations to mitigate cache poisoning risks by [@&#8203;chiranjib-swain](https://redirect.github.com/chiranjib-swain) in [#&#8203;1567](https://redirect.github.com/actions/setup-node/pull/1567) ##### Dependency update: - Upgrade [@&#8203;actions/cache](https://redirect.github.com/actions/cache) to 5.1.0, log cache write denied by [@&#8203;jasongin](https://redirect.github.com/jasongin) in [#&#8203;1569](https://redirect.github.com/actions/setup-node/pull/1569) ##### New Contributors - [@&#8203;chiranjib-swain](https://redirect.github.com/chiranjib-swain) made their first contribution in [#&#8203;1536](https://redirect.github.com/actions/setup-node/pull/1536) - [@&#8203;deiga](https://redirect.github.com/deiga) made their first contribution in [#&#8203;1548](https://redirect.github.com/actions/setup-node/pull/1548) - [@&#8203;jasongin](https://redirect.github.com/jasongin) made their first contribution in [#&#8203;1569](https://redirect.github.com/actions/setup-node/pull/1569) **Full Changelog**: <actions/setup-node@v6...v7.0.0> ### [`v7`](https://redirect.github.com/actions/setup-node/compare/v6.5.0...v7.0.0) [Compare Source](https://redirect.github.com/actions/setup-node/compare/v6.5.0...v7.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/marimo-team/codemirror-sql). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI3Mi40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent da15ca1 commit 922b3c5

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
2424

2525
- name: ⎔ Setup Node.js
26-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
26+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
2727
with:
2828
node-version: 24
2929
cache: pnpm

.github/workflows/demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
2020

2121
- name: ⎔ Setup Node.js
22-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
22+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
2323
with:
2424
node-version: 24
2525
cache: pnpm

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
2020

2121
- name: ⎔ Setup Node.js
22-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
22+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
2323
with:
2424
node-version: 24
2525
cache: pnpm
@@ -91,7 +91,7 @@ jobs:
9191
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
9292

9393
- name: ⎔ Setup Node.js
94-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
94+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
9595
with:
9696
node-version: 24
9797
registry-url: 'https://registry.npmjs.org'
@@ -112,7 +112,7 @@ jobs:
112112
fetch-depth: 0
113113

114114
- name: ⎔ Setup Node.js
115-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
115+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
116116
with:
117117
node-version: 24
118118

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
2828

2929
- name: ⎔ Setup Node.js
30-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
30+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
3131
with:
3232
node-version: 24
3333
cache: pnpm

0 commit comments

Comments
 (0)