From a7d72350f4dcea7d02ee073a8ff6265225483003 Mon Sep 17 00:00:00 2001 From: codfish <1666298+codfish@users.noreply.github.com> Date: Sat, 10 Feb 2024 16:02:51 -0500 Subject: [PATCH] feat: bump node to v20.11.0 --- .github/workflows/release.yml | 2 +- .github/workflows/validate.yml | 6 ++++-- .nvmrc | 2 +- Dockerfile | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d4c95b6..68be842 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: semantic-release id: semantic diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 35a159a..7449a45 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -7,11 +7,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha || github.ref }} - uses: actions/setup-node@v3 with: - node-version: 18.7.0 + node-version: 20.11.0 - run: npm ci diff --git a/.nvmrc b/.nvmrc index 805b5a4..7ea6a59 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v20.9.0 +v20.11.0 diff --git a/Dockerfile b/Dockerfile index f4e02d5..29e43db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.9.0 +FROM node:20.11.0 # nice clean home for our action files RUN mkdir /action