5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 00:06:54 +00:00

chore(deps): update node version to 20.9.0

BREAKING CHANGE: action now runs on Node 20.9.0
This commit is contained in:
Wagner Santos 2023-11-01 05:26:00 -03:00
parent 6319f54d83
commit a8947aa26c
5 changed files with 7 additions and 7 deletions

View file

@ -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: |

View file

@ -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: |

2
.nvmrc
View file

@ -1 +1 @@
16.5.0
20.9.0

View file

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

View file

@ -1,6 +1,6 @@
{
"presets": [["@babel/preset-env"]],
"targets": {
"node": "16.5.0"
"node": "20.9.0"
}
}