From 7ec41e16b5b6d6f378b8bef26e3c279d97f83482 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 23 Mar 2026 19:23:59 +0100 Subject: [PATCH 1/3] ci: Use NodeJS v24 as a default GitHub Actions runtime --- .github/workflows/release-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 1e7a927..94feee1 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: - node-version: 18 + node-version: 24 - run: npm ci --omit dev - uses: JS-DevTools/npm-publish@0fd2f4369c5d6bcfcde6091a7c527d810b9b5c3f # v4.1.5 with: From 44070241416787522e83f1df1c2e25f74981ee06 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Tue, 24 Mar 2026 14:06:45 +0100 Subject: [PATCH 2/3] ci: Use NodeJS v24 as a default GitHub Actions runtime --- .github/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1fc9da..1baf11f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,15 +9,12 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20] - steps: + steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 24 uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: - node-version: ${{ matrix.node-version }} + node-version: 24 - name: Install Dependencies run: npm ci - name: Run lint From 82ba0f4a1e93139d2f7b7982229a8bcd041e975d Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Tue, 24 Mar 2026 14:33:59 +0100 Subject: [PATCH 3/3] ci: Fix indentation in build workflow --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1baf11f..a133d48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ on: jobs: build: runs-on: ubuntu-latest - steps: + steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Use Node.js 24 uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0