Skip to content

Commit d1e3cbf

Browse files
⚙️ [Maintenance]: Update super-linter to v8.4.0 (#58)
## Description Updates super-linter from v8.3.2 to v8.4.0. ## Changes - Updated `super-linter/super-linter` to v8.4.0 (`12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e`) - Added `.codespellrc` configuration file for codespell linter ## References - [super-linter v8.4.0 release](https://github.com/super-linter/super-linter/releases/tag/v8.4.0)
1 parent e4cb409 commit d1e3cbf

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/linters/.codespellrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
skip = ./.github/linters

.github/workflows/Linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
persist-credentials: false
2626

2727
- name: Lint code base
28-
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
28+
uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0
2929
env:
3030
GITHUB_TOKEN: ${{ github.token }}
3131
VALIDATE_BIOME_FORMAT: false

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ to streamline continuous integration for PowerShell projects:
2020
The action's behavior is controlled by a **layered configuration** system, which merges settings from multiple sources in a specific order. The
2121
highest-priority settings override lower-priority ones. The order of precedence is as follows:
2222

23-
| Setting | Default | Test Suite | Direct Inputs | Result |
24-
|------------|---------|------------|---------------|--------|
25-
| `SettingA` | `X` | | | `X` |
26-
| `SettingB` | `X` | `Y` | | `Y` |
27-
| `SettingC` | `X` | `Y` | `Z` | `Z` |
23+
| Setting | Default | Test Suite | Direct Inputs | Result |
24+
|-------------|---------|------------|---------------|--------|
25+
| `Setting_A` | `X` | | | `X` |
26+
| `Setting_B` | `X` | `Y` | | `Y` |
27+
| `Setting_C` | `X` | `Y` | `Z` | `Z` |
2828

2929
This **last-write-wins** strategy means you can set global defaults while retaining the flexibility to override them at the action level.
3030

src/exec.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Get-Module | Format-Table -AutoSize | Out-String
5454
'::endgroup::'
5555

5656
$configuration = New-PesterConfiguration -Hashtable $configuration
57-
$PSStyle.OutputRendering = 'Host' # Ensure propper XML rendering
57+
$PSStyle.OutputRendering = 'Host' # Ensure proper XML rendering
5858
$testResults = Invoke-Pester -Configuration $configuration
5959
$PSStyle.OutputRendering = 'Ansi'
6060

0 commit comments

Comments
 (0)