1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00

chore(security): upgrade to newer node version (#10404)

## About the changes
Upgrade node to latest version to solve
[CVE-2025-27210](https://nodejs.org/en/blog/vulnerability/july-2025-security-releases)

Closes #10380
This commit is contained in:
Gastón Fournier 2025-07-23 18:49:06 +02:00 committed by GitHub
parent e89fa7ec6e
commit 4854b35cb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
version: [22.15.1-alpine3.21] version: [22.17-alpine3.22]
steps: steps:
- name: Checkout tag v${{ inputs.version }} - name: Checkout tag v${{ inputs.version }}
if: ${{ inputs.version != '' }} if: ${{ inputs.version != '' }}

View File

@ -1 +1 @@
22.15.0 22.17

View File

@ -1,4 +1,4 @@
ARG NODE_VERSION=22.15.1-alpine3.21 ARG NODE_VERSION=22.17-alpine3.22
FROM node:$NODE_VERSION AS builder FROM node:$NODE_VERSION AS builder