From 6150c49a74c987fe5ee2cf62d21a10afdcc78bf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 12:19:39 +0000 Subject: [PATCH 1/3] Bump super-linter/super-linter from 8.3.2 to 8.5.0 Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 8.3.2 to 8.5.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...61abc07d755095a68f4987d1c2c3d1d64408f1f9) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-version: 8.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/Build-Docs.yml | 2 +- .github/workflows/Lint-Repository.yml | 2 +- .github/workflows/Linter.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build-Docs.yml b/.github/workflows/Build-Docs.yml index 2e9f948e..6c8db0fe 100644 --- a/.github/workflows/Build-Docs.yml +++ b/.github/workflows/Build-Docs.yml @@ -72,7 +72,7 @@ jobs: - name: Lint documentation id: super-linter - uses: super-linter/super-linter/slim@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 + uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0 env: RUN_LOCAL: true DEFAULT_BRANCH: main diff --git a/.github/workflows/Lint-Repository.yml b/.github/workflows/Lint-Repository.yml index a9f6445e..e2a5f14e 100644 --- a/.github/workflows/Lint-Repository.yml +++ b/.github/workflows/Lint-Repository.yml @@ -48,7 +48,7 @@ jobs: - name: Lint code base id: super-linter - uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 + uses: super-linter/super-linter@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0 env: GITHUB_TOKEN: ${{ github.token }} DEFAULT_WORKSPACE: ${{ fromJson(env.Settings).WorkingDirectory }} diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index 05f128c8..86b47237 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Lint code base - uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 + uses: super-linter/super-linter@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0 env: GITHUB_TOKEN: ${{ github.token }} VALIDATE_BIOME_FORMAT: false From 8b6334a8717ed3217efc882c2d002e1124674d4d Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 18 Feb 2026 01:00:50 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Add=20.codespellr?= =?UTF-8?q?c=20configuration=20to=20skip=20linters=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/linters/.codespellrc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/linters/.codespellrc diff --git a/.github/linters/.codespellrc b/.github/linters/.codespellrc new file mode 100644 index 00000000..5f3e9d96 --- /dev/null +++ b/.github/linters/.codespellrc @@ -0,0 +1,2 @@ +[codespell] +skip = ./.github/linters From 92e40e27809e0a2a55c44768736cb598454a869f Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 18 Feb 2026 01:40:51 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20[Maintenance]:=20Add?= =?UTF-8?q?=20afterall=20to=20codespell=20ignore=20words=20list=20(#287)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds `afterall` to the codespell ignore words list in `.codespellrc` to prevent false positive spell check warnings in CI linting. This term is commonly used in PowerShell (e.g., Pester's `AfterAll` block) and should not be flagged as a misspelling. ## Codespell configuration The `.codespellrc` linter configuration now includes `ignore-words-list = afterall`, which tells codespell to skip this word during spell checking. No changes to functionality or shipped artifacts. --- .github/linters/.codespellrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/linters/.codespellrc b/.github/linters/.codespellrc index 5f3e9d96..351e9a06 100644 --- a/.github/linters/.codespellrc +++ b/.github/linters/.codespellrc @@ -1,2 +1,3 @@ [codespell] skip = ./.github/linters +ignore-words-list = afterall