Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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