1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

chore: pin node version 18.17.1 (#4834)

We are pinning node to version 18.17.1 as we have seen some performance
degregation on node 18.18.0 on arm64. We will investigate this further
at a later point. This is to mitigate the issue.

Our next step in pinpointing the issue will be to compare between
running on musl vs libc on arm64.
This commit is contained in:
Gard Rimestad 2023-09-26 10:41:13 +02:00 committed by GitHub
parent d49ff03464
commit 7cb471a0a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [18-alpine]
version: [18.17.1-alpine]
steps:
- name: Checkout
uses: actions/checkout@v3

View File

@ -1,4 +1,4 @@
ARG NODE_VERSION=18-alpine
ARG NODE_VERSION=18.17.1-alpine
FROM node:$NODE_VERSION as builder