Skip to content

Commit c504620

Browse files
authored
bump node to 22+ (#242)
there's still time until 20 goes eol, but updating to 22 so that we're good until 2027
1 parent 6d9e661 commit c504620

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,11 +28,11 @@ jobs:
2828
echo "SKIP=no" >> $GITHUB_ENV
2929
fi
3030
31-
- name: 'Install node 20'
31+
- name: 'Install node 22'
3232
if: ${{ env.SKIP == 'no' }}
3333
uses: actions/setup-node@v4
3434
with:
35-
node-version: '20'
35+
node-version: '22'
3636
cache: 'npm'
3737

3838
- 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)