Skip to content

Commit

Permalink
Merge pull request #796 from Jayllyz/build/bump-node-lts
Browse files Browse the repository at this point in the history
build: update node.js version to 20.16.0
  • Loading branch information
wagoid authored Aug 5, 2024
2 parents 7f0a61d + 3265b23 commit 310ec1e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.9.0
20.16.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 /

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion babel.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"presets": [["@babel/preset-env"]],
"targets": {
"node": "20.9.0"
"node": "20.16.0"
}
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "rollup -c"
},
"engines": {
"node": "20.9.0"
"node": "20.16.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 310ec1e

Please sign in to comment.