From e13c0227ae74f4d196e7772ccb2d931f77523d9f Mon Sep 17 00:00:00 2001 From: Emil Ajdyna Date: Tue, 14 May 2024 13:11:00 +0200 Subject: [PATCH] Update the github workflow --- .github/workflows/nodejs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5e8195b2..da96985f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -8,14 +8,14 @@ jobs: strategy: matrix: - node-version: [20.11.1] + version: [20.13.1] steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.version }} + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.version }} - name: npm install, build, and test run: | npm ci