Skip to content

Commit ef16042

Browse files
Merge pull request #2239 from charlesmulder/fix/security-vulnerabilities-npm-audit
fix: resolve npm security vulnerabilities
2 parents 3caae14 + d7bf6c4 commit ef16042

File tree

4 files changed

+2053
-1317
lines changed

4 files changed

+2053
-1317
lines changed

.github/actions/release/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ inputs:
1919
runs:
2020
using: "composite"
2121
steps:
22-
- name: Use Node.js 18.x
22+
- name: Use Node.js 22.x
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: '18'
25+
node-version: '22'
2626
- uses: nrwl/nx-set-shas@v4
2727
- uses: './.github/actions/cache'
2828
- name: Install deps
@@ -55,4 +55,4 @@ runs:
5555
run: |
5656
git tag -f last-release
5757
git push origin last-release --force --no-verify
58-
58+

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
31-
- name: Use Node.js 20.x
31+
- name: Use Node.js 22.x
3232
uses: actions/setup-node@v3
3333
with:
34-
node-version: 20.x
34+
node-version: 22.x
3535
- uses: nrwl/nx-set-shas@v4
3636
- uses: './.github/actions/cache'
3737
- name: Build
@@ -44,10 +44,10 @@ jobs:
4444
uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0
47-
- name: Use Node.js 20.x
47+
- name: Use Node.js 22.x
4848
uses: actions/setup-node@v3
4949
with:
50-
node-version: 20.x
50+
node-version: 22.x
5151
- uses: nrwl/nx-set-shas@v4
5252
- uses: './.github/actions/cache'
5353
- name: Run unit tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/nodejs-16
1+
FROM registry.access.redhat.com/ubi9/nodejs-22
22
USER root
33
WORKDIR /docs
44
COPY ./packages /docs/packages

0 commit comments

Comments
 (0)