Skip to content

Commit af4621b

Browse files
authored
Merge pull request #179 from probot/renovate/node-24.x
chore(deps): update dependency node to v24
2 parents 5228f65 + 9ce749a commit af4621b

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js & TypeScript",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:4-22-bookworm",
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:24-bookworm",
77
"features": {
88
"ghcr.io/devcontainers/features/aws-cli:1": {},
99
"ghcr.io/audacioustux/devcontainers/aws-sam-cli:1": {}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1313
- uses: actions/setup-node@v6
1414
with:
15-
node-version: 22
15+
node-version: 24
1616
cache: npm
1717
- run: npm ci
1818
- uses: aws-actions/setup-sam@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/setup-node@v6
1616
with:
1717
cache: npm
18-
node-version: 22
18+
node-version: 24
1919
- run: npm ci
2020
- run: npm test

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"sarif-viewer.connectToGithubCodeScanning": "off"
3+
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-slim
1+
FROM node:24-slim
22
WORKDIR /usr/src/app
33
COPY package.json package-lock.json ./
44
RUN npm ci --production

template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Resources:
2121
Description: Basic Auth Funtion
2222
CodeUri: .
2323
Handler: handler.webhooks
24-
Runtime: nodejs22.x
24+
Runtime: nodejs24.x
2525
MemorySize: 256
2626
Timeout: 20
2727
Events:

0 commit comments

Comments
 (0)