diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d58682f9..c132948e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '20.16.0' - uses: actions/cache@v3 with: path: | @@ -38,9 +38,9 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '20.16.0' - uses: actions/cache@v3 with: path: | diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index c801ac57..4a03a4cd 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -8,9 +8,9 @@ jobs: - uses: actions/checkout@v3 - run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml - run: echo -n '' > .dockerignore - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '20.16.0' - uses: actions/cache@v3 with: path: | @@ -31,9 +31,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '20.16.0' - uses: actions/cache@v3 with: path: | diff --git a/.nvmrc b/.nvmrc index f3f52b42..8ce70308 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.9.0 +20.16.0 diff --git a/Dockerfile b/Dockerfile index 9435dd36..dae1a46c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.9.0-alpine3.17 as build +FROM node:20.16.0-alpine3.20 as build COPY package*.json / @@ -8,7 +8,7 @@ COPY . . RUN npm run build -FROM node:20.9.0-alpine3.17 +FROM node:20.16.0-alpine3.20 RUN apk --no-cache add git diff --git a/babel.config.json b/babel.config.json index 894af28c..8e3b21a7 100644 --- a/babel.config.json +++ b/babel.config.json @@ -1,6 +1,6 @@ { "presets": [["@babel/preset-env"]], "targets": { - "node": "20.9.0" + "node": "20.16.0" } } diff --git a/package-lock.json b/package-lock.json index 04bdc0ac..c746d2c4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -57,7 +57,7 @@ "yaml": "^2.4.1" }, "engines": { - "node": "20.9.0" + "node": "20.16.0" } }, "node_modules/@actions/core": { diff --git a/package.json b/package.json index 2829fcb3..0008fb53 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "build": "rollup -c" }, "engines": { - "node": "20.9.0" + "node": "20.16.0" }, "repository": { "type": "git",