From f7556f8e850b375ac8c53e966ff6aaf21ab025bf Mon Sep 17 00:00:00 2001 From: amaechiabuah Date: Wed, 8 Apr 2026 15:10:08 +0100 Subject: [PATCH 1/3] DUPLO-42440: Upgrade action runtime from Node20 to Node24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - action.yml: using node20 → node24 - package.json: engines.node >=20 → >=24 --- action.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0b0988a..0f41be5 100644 --- a/action.yml +++ b/action.yml @@ -53,5 +53,5 @@ outputs: release-notes: description: The generated release notes. runs: - using: node20 + using: node24 main: 'dist/index.js' diff --git a/package.json b/package.json index 363df69..4136200 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "ci/cd" ], "engines": { - "node": ">=20" + "node": ">=24" }, "exports": { ".": "./dist/index.js" From a9ed60a28f4a189b1037007f0aa0968ef44ad32e Mon Sep 17 00:00:00 2001 From: amaechiabuah Date: Wed, 8 Apr 2026 15:32:44 +0100 Subject: [PATCH 2/3] =?UTF-8?q?Bump=20super-linter=20v7=20=E2=86=92=20v8?= =?UTF-8?q?=20(includes=20actionlint=20with=20node24=20support)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 8c0f6f0..450b894 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -38,7 +38,7 @@ jobs: - name: Lint Codebase id: super-linter - uses: super-linter/super-linter/slim@v7 + uses: super-linter/super-linter/slim@v8 env: DEFAULT_BRANCH: main FILTER_REGEX_EXCLUDE: dist/**/* From 05381c3cdb7bb3662f8a662fa45e807a8b89e662 Mon Sep 17 00:00:00 2001 From: amaechiabuah Date: Wed, 8 Apr 2026 15:37:58 +0100 Subject: [PATCH 3/3] Disable new linters introduced in super-linter v8 (pre-existing issues) --- .github/workflows/linter.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 450b894..f445e26 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -51,3 +51,7 @@ jobs: VALIDATE_TYPESCRIPT_ES: false VALIDATE_JSON: false VALIDATE_TYPESCRIPT_STANDARD: false + VALIDATE_BIOME_FORMAT: false + VALIDATE_GITHUB_ACTIONS_ZIZMOR: false + VALIDATE_SPELL_CODESPELL: false + VALIDATE_TRIVY: false