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