From 3410d58696a936b23704a2cf1bc2c34a5989db33 Mon Sep 17 00:00:00 2001 From: Jacky Jiang Date: Sat, 23 Dec 2023 10:43:46 +1100 Subject: [PATCH] fix pipelines --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a66bb8d..a3ab7f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,9 +13,9 @@ jobs: name: Build, Test & Eslint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js 18 - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 18 - run: yarn install @@ -57,9 +57,9 @@ jobs: name: Build, Test & Eslint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js 20 - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 20 - run: yarn install