From d4148eedc6692690e8789cb31d879a989b3136c0 Mon Sep 17 00:00:00 2001 From: Aaron William Po Date: Sat, 12 Aug 2023 23:40:19 -0400 Subject: [PATCH] Update github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index dca0c7e..af513ae 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -8,13 +8,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - name: Install dependencies - run: | - npm ci + run: npm ci