From a137275e164b8044b2282bd2808b184c3f782e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Tue, 21 Nov 2023 12:58:34 +0000 Subject: [PATCH] chore: unpin node version in build (#5379) https://linear.app/unleash/issue/2-1434/unpin-node-18-when-a-fix-is-out Unpins the node version in our build step. Continues the work of https://github.com/Unleash/unleash/pull/5146 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3166751049..42f2153c59 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -37,7 +37,7 @@ jobs: - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: 18.17 + node-version: ${{ matrix.node-version }} cache: 'yarn' - run: yarn - run: yarn build:frontend:if-needed