Skip to content

Commit f30b5f1

Browse files
⚙️ [Maintenance]: Update super-linter to v8.4.0
1 parent 3d53e12 commit f30b5f1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/Linter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ 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 }}
31+
SUPPRESS_OUTPUT_ON_SUCCESS: true
3132
VALIDATE_BIOME_FORMAT: false
3233
VALIDATE_BIOME_LINT: false
3334
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false

src/main.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@ $settings = [pscustomobject]@{
181181
Linter = [pscustomobject]@{
182182
Skip = $settings.Linter.Skip ?? $false
183183
ShowSummaryOnSuccess = $settings.Linter.ShowSummaryOnSuccess ?? $false
184-
env = $settings.Linter.env ?? @{}
184+
env = @{
185+
SUPPRESS_OUTPUT_ON_SUCCESS = $settings.Linter.env.SUPPRESS_OUTPUT_ON_SUCCESS ?? $true
186+
} + ($settings.Linter.env ?? @{})
185187
}
186188
}
187189

0 commit comments

Comments
 (0)