Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cron-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
echo "SKIP=no" >> $GITHUB_ENV
fi

- name: 'Install node 22'
- name: 'Install node 24'
if: ${{ env.SKIP == 'no' }}
uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
cache: 'npm'

- name: 'Install python 3.13'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
--volume "$(pwd)/containers":/var/lib/containers \
docker.io/pulp/pulp

- name: 'Install node 22'
- name: 'Install node 24'
uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'

- name: 'Install python 3.13'
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: 'Checkout pulp-ui (${{ github.ref }})'
uses: actions/checkout@v6

- name: 'Install node 22'
- name: 'Install node 24'
uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
cache: 'npm'

- name: 'Install python 3.13'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This Dockerfile is intended for development purposes only. Do not use it for production deployments
# Copied from https://github.com/ansible/ansible-hub-ui/blob/master/Dockerfile

FROM node:22-alpine
FROM node:24-alpine
WORKDIR /pulp/

RUN mkdir -p /pulp/app/ && \
Expand Down
Loading