Skip to content

Commit f3e71d4

Browse files
committed
update all stuff to node 26, add devcontainer-lock.json to repo
1 parent aba200c commit f3e71d4

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"features": {
3+
"ghcr.io/audacioustux/devcontainers/aws-sam-cli:1": {
4+
"version": "1.0.1",
5+
"resolved": "ghcr.io/audacioustux/devcontainers/aws-sam-cli@sha256:1a5e97c673432cf41cf069d8268b372e3f6ea9753aa0b4d08693188998d775b6",
6+
"integrity": "sha256:1a5e97c673432cf41cf069d8268b372e3f6ea9753aa0b4d08693188998d775b6"
7+
},
8+
"ghcr.io/devcontainers/features/aws-cli:1": {
9+
"version": "1.1.4",
10+
"resolved": "ghcr.io/devcontainers/features/aws-cli@sha256:1f93c8315b7a6d76982ebb2269f8b0d50413fc0f965c032edf4aee0caceb73ef",
11+
"integrity": "sha256:1f93c8315b7a6d76982ebb2269f8b0d50413fc0f965c032edf4aee0caceb73ef"
12+
}
13+
}
14+
}

.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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
1313
- uses: actions/setup-node@v7
1414
with:
15-
node-version: 24
15+
node-version: 26
1616
cache: npm
1717
- run: npm ci
1818
- uses: aws-actions/setup-sam@v3

.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@v7
1616
with:
1717
cache: npm
18-
node-version: 24
18+
node-version: 26
1919
- run: npm ci
2020
- run: npm test

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24-slim
1+
FROM node:26-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: nodejs24.x
24+
Runtime: nodejs26.x
2525
MemorySize: 256
2626
Timeout: 20
2727
Events:

0 commit comments

Comments
 (0)