From 0ead014c9e82db9a811612741c0799453a7cd008 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 14:17:44 +0000 Subject: [PATCH 1/2] [actions] Bump super-linter/super-linter in the all group Bumps the all group with 1 update: [super-linter/super-linter](https://github.com/super-linter/super-linter). Updates `super-linter/super-linter` from 8.3.2 to 8.4.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/d5b0a2ab116623730dd094f15ddc1b6b25bf7b99...12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-version: 8.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] --- .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 a37404d..6c1fe02 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -39,7 +39,7 @@ jobs: - name: Lint Codebase id: super-linter - uses: super-linter/super-linter/slim@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 + uses: super-linter/super-linter/slim@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e env: DEFAULT_BRANCH: main FILTER_REGEX_EXCLUDE: dist/**/* From 3df56b4b8a5ad224cdf357a3bd914a80b262746b Mon Sep 17 00:00:00 2001 From: Antoine Froger Date: Fri, 20 Feb 2026 14:49:39 +0100 Subject: [PATCH 2/2] Fix CI pipeline: upgrade to Node 22 LTS and add codespell config - Update .node-version from 20.18.1 to 22.22.0 to fix check-dist mismatch - Update action.yml runtime from node20 to node22 - Add .codespellrc to ignore 'afterAll' --- .codespellrc | 2 ++ .node-version | 2 +- action.yml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 0000000..403ee61 --- /dev/null +++ b/.codespellrc @@ -0,0 +1,2 @@ +[codespell] +ignore-words-list = afterAll diff --git a/.node-version b/.node-version index d4b7699..85e5027 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -20.18.1 +22.22.0 diff --git a/action.yml b/action.yml index 6632f89..4d26479 100644 --- a/action.yml +++ b/action.yml @@ -33,5 +33,5 @@ outputs: description: A (stringified) array of PHP versions from min to latest, f.e. [8.1, 8.2, 8.3, 8.4] runs: - using: node20 + using: node22 main: dist/index.js