From d14f7fcea0a89eebd3fd045706ba7ef86c545618 Mon Sep 17 00:00:00 2001 From: Tashi D Gyeltshen Date: Wed, 29 Nov 2023 16:37:04 -0500 Subject: [PATCH] Update gh actions and pin node version back. --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7a6be76..2e34086 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,11 +13,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [20.x] + node-version: [20.8.0] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install @@ -30,13 +30,13 @@ jobs: timeout-minutes: 15 strategy: matrix: - node-version: [20.x] + node-version: [20.8.0] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install npm dependencies