From b8a00feffa9970fc08d2f7866c60669277f86699 Mon Sep 17 00:00:00 2001 From: Tashi D Gyeltshen Date: Wed, 29 Nov 2023 17:08:54 -0500 Subject: [PATCH] Pin node version back and use latest actions. --- .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 a5d3913..94e2774 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,11 +14,11 @@ jobs: timeout-minutes: 10 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: 10 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