From 47052de853bdb212abdc3f5995d5cd22346e8968 Mon Sep 17 00:00:00 2001 From: Simeon Simeonoff Date: Thu, 2 Nov 2023 17:33:45 +0200 Subject: [PATCH] ci(actions): bump node version --- .github/workflows/npm-ci.yml | 6 +++--- .github/workflows/npm-publish.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/npm-ci.yml b/.github/workflows/npm-ci.yml index 609b792..963fb4c 100644 --- a/.github/workflows/npm-ci.yml +++ b/.github/workflows/npm-ci.yml @@ -16,12 +16,12 @@ jobs: strategy: matrix: - node-version: [14.x] + node-version: [20.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm ci diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 0afa9c0..76a7392 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -11,10 +11,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 20 registry-url: 'https://registry.npmjs.org' - run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV - run: echo ${VERSION}