Skip to content

Commit a8301c9

Browse files
authored
Merge pull request #30 from aecomet/feature/update-node
chore: upgrade nodejs
2 parents e60fdaa + efbc3d8 commit a8301c9

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
tag:
1414
required: true
15-
description: 'image tag (e.g.: 22.13.0)'
15+
description: 'image tag (e.g.: 22.14.0)'
1616
jobs:
1717
publish:
1818
name: Build image

.github/workflows/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
3+
updates:
4+
# Github Actions
5+
- package-ecosystem: 'github-actions'
6+
directory: '/'
7+
assignees:
8+
- aecomet
9+
schedule:
10+
interval: 'weekly'
11+
commit-message:
12+
prefix: 'chore: actions'
13+
open-pull-requests-limit: 5

.github/workflows/lint-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write
1313

1414
container:
15-
image: ghcr.io/aecomet/commitlint-base:22.13.0
15+
image: ghcr.io/aecomet/commitlint-base:22.14.0
1616
credentials:
1717
username: ${{ github.repository_owner }}
1818
password: ${{ secrets.PERSONAL_ACCESS_TOKEN_FOR_ACTIONS }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ echo $CR_PAT | docker login ghcr.io -u [USERNAME] --password-stdin
1818

1919
```sh
2020
sh publish-image.sh [name] [tag]
21-
# ex. sh publish-image.sh commitlint 22.13.0
21+
# ex. sh publish-image.sh commitlint 22.14.0
2222
```
2323

2424
## inside container (for debug)

commitlint/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.13.0-slim
1+
FROM node:22.14.0-slim
22

33
WORKDIR /app
44
RUN apt update &&\

reviewdog/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.13.0-slim
1+
FROM node:22.14.0-slim
22

33
WORKDIR /app
44
COPY . /app
@@ -7,7 +7,7 @@ RUN apt update &&\
77
apt install -y curl git &&\
88
mkdir -p .git &&\
99
# install pnpm
10-
npm i -g pnpm@9.15.4
10+
npm i -g pnpm@10.5.2
1111

1212
ENTRYPOINT [ "/bin/sh" ]
1313
CMD [ "-c", "sh" ]

0 commit comments

Comments
 (0)