Skip to content

Commit ba1dcd3

Browse files
JohnMcLearCopilot
andauthored
ci: allow Node 22+ in workflows (#82)
* ci: allow Node 22+ in workflows Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * ci: pin workflows to Node 25 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 06dfdb8 commit ba1dcd3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€Ž.github/workflows/backend-tests.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-node@v6
3030
name: Install Node.js
3131
with:
32-
node-version: 22
32+
node-version: 25
3333
- uses: pnpm/action-setup@v6
3434
name: Install pnpm
3535
with:

β€Ž.github/workflows/frontend-tests.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@v6
2020
name: Install Node.js
2121
with:
22-
node-version: 22
22+
node-version: 25
2323
- uses: pnpm/action-setup@v6
2424
name: Install pnpm
2525
with:

β€Ž.github/workflows/npmpublish.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# OIDC trusted publishing needs npm >= 11.5.1, which requires
2424
# Node >= 20.17.0. setup-node's `20` resolves to the latest
2525
# 20.x, which satisfies that.
26-
node-version: 20
26+
node-version: 25
2727
registry-url: https://registry.npmjs.org/
2828
- name: Upgrade npm to >=11.5.1 (required for trusted publishing)
2929
run: npm install -g npm@latest

0 commit comments

Comments
 (0)