Skip to content

Commit e4bee1b

Browse files
authored
Merge pull request #137 from mbaldessari/update-superlinter-v8
Upgrade super-linter to v8.5.0
2 parents 1a01272 + 95f8247 commit e4bee1b

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ updates:
77
schedule:
88
interval: "weekly"
99

10+
groups:
11+
github-actions:
12+
patterns:
13+
- "*"
14+
cooldown:
15+
default-days: 7

.github/workflows/superlinter.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
name: Super linter
33

4+
permissions: read-all # zizmor: ignore[excessive-permissions]
45
on: [push, pull_request]
56

67
jobs:
@@ -12,16 +13,17 @@ jobs:
1213

1314
steps:
1415
- name: Checkout Code
15-
uses: actions/checkout@v6
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1617
with:
18+
persist-credentials: false
1719
# Full git history is needed to get a proper list of changed files within `super-linter`
1820
fetch-depth: 0
1921

2022
################################
2123
# Run Linter against code base #
2224
################################
2325
- name: Lint Code Base
24-
uses: super-linter/super-linter/slim@v7
26+
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
2527
env:
2628
VALIDATE_ALL_CODEBASE: true
2729
DEFAULT_BRANCH: main
@@ -40,5 +42,12 @@ jobs:
4042
VALIDATE_YAML_PRETTIER: false
4143
VALIDATE_TEKTON: false
4244
VALIDATE_DOCKERFILE_HADOLINT: false
43-
# VALIDATE_MARKDOWN: false
44-
# VALIDATE_NATURAL_LANGUAGE: false
45+
VALIDATE_BIOME_FORMAT: false
46+
VALIDATE_BIOME_LINT: false
47+
VALIDATE_NATURAL_LANGUAGE: false
48+
VALIDATE_SPELL_CODESPELL: false
49+
VALIDATE_PYTHON_BLACK: false
50+
VALIDATE_PYTHON_PYINK: false
51+
VALIDATE_PYTHON_RUFF_FORMAT: false
52+
VALIDATE_TRIVY: false
53+
FILTER_REGEX_EXCLUDE: .*/common/.*

0 commit comments

Comments
 (0)