Skip to content

Commit 9183586

Browse files
authored
Bump everything but pf6 & react19 (#278)
* Bump everything but pf6 & react19 apply a stylelint --fix fix lingui throwing on premature _ by moving to a getter * bump node to 24 (without increasing 22 minimum in package.json)
1 parent 8b0e331 commit 9183586

File tree

8 files changed

+1093
-884
lines changed

8 files changed

+1093
-884
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 22'
31+
- name: 'Install node 24'
3232
if: ${{ env.SKIP == 'no' }}
3333
uses: actions/setup-node@v6
3434
with:
35-
node-version: '22'
35+
node-version: '24'
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 22'
43+
- name: 'Install node 24'
4444
uses: actions/setup-node@v6
4545
with:
46-
node-version: '22'
46+
node-version: '24'
4747

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

.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@v6
1919

20-
- name: 'Install node 22'
20+
- name: 'Install node 24'
2121
uses: actions/setup-node@v6
2222
with:
23-
node-version: '22'
23+
node-version: '24'
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:22-alpine
5+
FROM node:24-alpine
66
WORKDIR /pulp/
77

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

0 commit comments

Comments
 (0)