From ed5c1d3196124743f6b4458d219af37eba9fbf50 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Sat, 1 Jun 2024 23:57:22 +0900 Subject: [PATCH] bump action versions --- .github/workflows/build-and-deploy.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 660edaf..3142677 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -11,16 +11,16 @@ jobs: environment: deploy steps: - name: Checkout ๐Ÿ›Ž๏ธ - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js ๐Ÿ˜‚ - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Install and Build ๐Ÿ”ง run: | - npm ci + npm i npm run build-ci - name: Deploy ๐Ÿš€ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5e69ff4..57a7f27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,16 +9,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ๐Ÿ”๐ŸŸ๐Ÿฅค - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4 with: persist-credentials: false - name: Use Node.js ๐Ÿ˜‚ - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '18.x' - name: Test ๐Ÿงช run: | - npm ci + npm i npm run check-ci