Skip to content

Commit 5ae2af1

Browse files
committed
chore(ci): move Actions to Node 24 JS runtime and pnpm 10.33.0
Bump actions/checkout and actions/setup-node to v6 and pnpm/action-setup to v5. Align packageManager and workflow/Docker pnpm to 10.33.0; adjust .nvmrc where required for Node 24. Made-with: Cursor
1 parent e39f2b8 commit 5ae2af1

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v6
1111

1212
- name: Setup pnpm
13-
uses: pnpm/action-setup@v4
13+
uses: pnpm/action-setup@v5
1414
with:
15-
version: 10.17.0
15+
version: 10.33.0
1616
run_install: false
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version-file: '.nvmrc'
2222
cache: 'pnpm'

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Setup pnpm
22-
uses: pnpm/action-setup@v4
22+
uses: pnpm/action-setup@v5
2323
with:
24-
version: 10.17.0
24+
version: 10.33.0
2525

2626
- name: Setup Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'pnpm'

.github/workflows/deploy-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
DOCKER_REGISTRY: shared-docker-registry
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545

4646
- name: Google Auth
4747
id: auth

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"engines": {
4444
"node": ">=24.0.0"
4545
},
46-
"packageManager": "pnpm@10.17.0",
46+
"packageManager": "pnpm@10.33.0",
4747
"pnpm": {
4848
"overrides": {
4949
"esbuild": "0.27.3"

packages/website/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV PNPM_HOME="/pnpm" \
77
PORT=8080 \
88
CI=true
99

10-
RUN npm install -g pnpm@latest-10
10+
RUN npm install -g pnpm@10.33.0
1111

1212
WORKDIR /app
1313

0 commit comments

Comments
 (0)