From 3f6b66e35feb4aab37f5ed90ae5ceeb3388ee0ee Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 28 Jan 2026 19:00:27 +0100 Subject: [PATCH 1/4] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20[Maintenance]:=20Updat?= =?UTF-8?q?e=20super-linter=20to=20v8.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Linter.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index 3a07190e..5c18a690 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -25,9 +25,10 @@ jobs: persist-credentials: false - name: Lint code base - uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 + uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0 env: GITHUB_TOKEN: ${{ github.token }} + SUPPRESS_OUTPUT_ON_SUCCESS: true VALIDATE_BIOME_FORMAT: false VALIDATE_JSCPD: false VALIDATE_JSON_PRETTIER: false From 2c2b1b2c170a53355f3244c07717b2a8e0c02afe Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 28 Jan 2026 20:04:06 +0100 Subject: [PATCH 2/4] Remove SUPPRESS_OUTPUT_ON_SUCCESS setting --- .github/workflows/Linter.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index 5c18a690..9ea28641 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -28,7 +28,6 @@ jobs: uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0 env: GITHUB_TOKEN: ${{ github.token }} - SUPPRESS_OUTPUT_ON_SUCCESS: true VALIDATE_BIOME_FORMAT: false VALIDATE_JSCPD: false VALIDATE_JSON_PRETTIER: false From 8d7649a1767df885c880695194c50522bcc29948 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 28 Jan 2026 22:45:10 +0100 Subject: [PATCH 3/4] Add codespell configuration --- .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 9fd25bf43aade98500b9e8810858583083ee5a76 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 30 Jan 2026 13:27:51 +0100 Subject: [PATCH 4/4] Spellchecker --- README.md | 10 +++++----- src/exec.ps1 | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 58f55623..aa681cb9 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ to streamline continuous integration for PowerShell projects: The action's behavior is controlled by a **layered configuration** system, which merges settings from multiple sources in a specific order. The highest-priority settings override lower-priority ones. The order of precedence is as follows: -| Setting | Default | Test Suite | Direct Inputs | Result | -|------------|---------|------------|---------------|--------| -| `SettingA` | `X` | | | `X` | -| `SettingB` | `X` | `Y` | | `Y` | -| `SettingC` | `X` | `Y` | `Z` | `Z` | +| Setting | Default | Test Suite | Direct Inputs | Result | +|-------------|---------|------------|---------------|--------| +| `Setting_A` | `X` | | | `X` | +| `Setting_B` | `X` | `Y` | | `Y` | +| `Setting_C` | `X` | `Y` | `Z` | `Z` | This **last-write-wins** strategy means you can set global defaults while retaining the flexibility to override them at the action level. diff --git a/src/exec.ps1 b/src/exec.ps1 index 5a2599b5..ab0de546 100644 --- a/src/exec.ps1 +++ b/src/exec.ps1 @@ -54,7 +54,7 @@ Get-Module | Format-Table -AutoSize | Out-String '::endgroup::' $configuration = New-PesterConfiguration -Hashtable $configuration -$PSStyle.OutputRendering = 'Host' # Ensure propper XML rendering +$PSStyle.OutputRendering = 'Host' # Ensure proper XML rendering $testResults = Invoke-Pester -Configuration $configuration $PSStyle.OutputRendering = 'Ansi'