diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16d9d31..9dba750 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.5.0' + node-version: '20.9.0' - uses: actions/cache@v3 with: path: | @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.5.0' + node-version: '20.9.0' - uses: actions/cache@v3 with: path: | diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 9555ac4..c801ac5 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -10,7 +10,7 @@ jobs: - run: echo -n '' > .dockerignore - uses: actions/setup-node@v3 with: - node-version: '16.5.0' + node-version: '20.9.0' - uses: actions/cache@v3 with: path: | @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.5.0' + node-version: '20.9.0' - uses: actions/cache@v3 with: path: | diff --git a/.nvmrc b/.nvmrc index 28ebe8b..f3f52b4 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16.5.0 +20.9.0 diff --git a/Dockerfile b/Dockerfile index ffa7c22..b6f3e54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY . . RUN npm run build -FROM node:16.5.0-alpine3.14 +FROM node:20.9.0-alpine3.17 RUN apk --no-cache add git diff --git a/babel.config.json b/babel.config.json index 4540581..894af28 100644 --- a/babel.config.json +++ b/babel.config.json @@ -1,6 +1,6 @@ { "presets": [["@babel/preset-env"]], "targets": { - "node": "16.5.0" + "node": "20.9.0" } }