From f5c26cf892aad99d59c48382a0152de6a2e5bf8f Mon Sep 17 00:00:00 2001 From: Victor Popkov Date: Thu, 18 Jan 2024 21:39:52 +0200 Subject: [PATCH] Bump node from 14.x to 18.12.0 in GA workflows --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2375e55..c24d380 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - node_version: [14.x] + node_version: [18.12.0] steps: - name: Check out uses: actions/checkout@v3 @@ -33,6 +33,8 @@ jobs: id: node with: node-version: ${{ matrix.node_version }} + - name: Enable corepack + run: corepack enable - name: Send Slack notification uses: codedsolar/slack-action@v1 if: ${{ github.event_name != 'pull_request' }} @@ -65,7 +67,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - node_version: [14.x] + node_version: [18.12.0] steps: - name: Check out uses: actions/checkout@v3 @@ -74,6 +76,8 @@ jobs: id: node with: node-version: ${{ matrix.node_version }} + - name: Enable corepack + run: corepack enable - name: Send Slack notification uses: codedsolar/slack-action@v1 if: ${{ github.event_name != 'pull_request' }}