Skip to content

Commit 2b772c2

Browse files
committed
bump node to 22+
there's still time until 20 goes eol, but updating to 22 so that we're good until 2027
1 parent 237e86b commit 2b772c2

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/cron-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
true
2929
fi
3030
31-
- name: 'Install node 20'
31+
- name: 'Install node 22'
3232
uses: actions/setup-node@v4
3333
with:
34-
node-version: '20'
34+
node-version: '22'
3535
cache: 'npm'
3636

3737
- name: 'Install python 3.13'

.github/workflows/cypress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
--volume "$(pwd)/containers":/var/lib/containers \
4141
docker.io/pulp/pulp
4242
43-
- name: 'Install node 20'
43+
- name: 'Install node 22'
4444
uses: actions/setup-node@v4
4545
with:
46-
node-version: '20'
46+
node-version: '22'
4747

4848
- name: 'Install python 3.13'
4949
uses: actions/setup-python@v5

.github/workflows/pr-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: 'Checkout pulp-ui (${{ github.ref }})'
1818
uses: actions/checkout@v4
1919

20-
- name: 'Install node 20'
20+
- name: 'Install node 22'
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: '20'
23+
node-version: '22'
2424
cache: 'npm'
2525

2626
- name: 'Install python 3.13'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This Dockerfile is intended for development purposes only. Do not use it for production deployments
33
# Copied from https://github.com/ansible/ansible-hub-ui/blob/master/Dockerfile
44

5-
FROM node:20-alpine
5+
FROM node:22-alpine
66
WORKDIR /pulp/
77

88
RUN mkdir -p /pulp/app/ && \

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"test": "true"
9696
},
9797
"engines": {
98-
"node": ">=20",
98+
"node": ">=22",
9999
"npm": ">=10"
100100
}
101101
}

0 commit comments

Comments
 (0)