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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: push

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@v4

Expand All @@ -19,7 +19,7 @@ jobs:
run: npm run build

test:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04
needs: build
steps:
- uses: actions/checkout@v4
Expand All @@ -41,7 +41,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

image:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.10.0
26.3.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Build
FROM node:24.10-alpine AS build
FROM node:26.3-alpine3.24 AS build
ENV NO_UPDATE_NOTIFIER=true

USER node
Expand All @@ -17,7 +17,7 @@ RUN npm run build


### Deployment
FROM node:24.10-alpine AS deployment
FROM node:26.3-alpine3.24 AS deployment

ENV NO_UPDATE_NOTIFIER=true

Expand Down
1 change: 1 addition & 0 deletions esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ await esbuild.build({
minify: true,
treeShaking: true,
sourcemap: 'linked',
external: ['@platformatic/wasm-utils'],
plugins: [commonifierPlugin],
});
Loading
Loading