From 9065376f080532ac9c3077ea41e101d8248fdcd1 Mon Sep 17 00:00:00 2001 From: chentsulin Date: Mon, 6 Mar 2023 14:35:40 +0800 Subject: [PATCH] ci(github): Update to Node 18 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acf096b..edfb657 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,12 +10,12 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 18 - uses: actions/cache@v1 id: yarn-cache with: path: .yarn/cache - key: ${{ runner.os }}-node-14-yarn-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node-18-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - run: yarn install --immutable