Skip to content

Commit 999b0ea

Browse files
committed
Update publisher image to nodejs22.
Updates publisher image so we use nodejs22. The previous nodejs20 image we were using were too old, and rolldown (required for new package tooling tsdown) wasn't able to be installed.
1 parent f852d27 commit 999b0ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
node-version:
20-
- 20.x
20+
- 22.x
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-node@v4
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-node@v4
3535
with:
36-
node-version: 20.x
36+
node-version: 22.x
3737
cache: npm
3838
- run: npm ci
3939
- run: npm run build

scripts/publish-container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20
1+
FROM node:22
22

33
# Install dependencies
44
RUN apt-get update && \

0 commit comments

Comments
 (0)