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
2 changes: 1 addition & 1 deletion .github/workflows/eslint-code-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
node-version: 26.x

- name: Install ESLint
run: |
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
node-version: [18.x, 20.x, 22.x]
node-version: [22.x, 24.x, 26.x]
# See supported Node.js release schedule
# at https://nodejs.org/en/about/releases/
permissions:
Expand All @@ -52,8 +52,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x

node-version: ${{ matrix.node-version }}
- name: Install ESLint
run: |
npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-coverage-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
node-version: 26.x

- name: Tool test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [26.x]
# See supported Node.js release schedule
# at https://nodejs.org/en/about/releases/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-coverage.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
node-version: 26.x

- name: Tool test
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=node:24.16.0-alpine3.23
ARG BASE_IMAGE=node:26.3.0-alpine3.23

###############################################################################
FROM ${BASE_IMAGE} AS base
Expand Down