Skip to content

Commit b0b55d4

Browse files
authored
Merge pull request #87 from actions/dependabot/github_actions/super-linter/super-linter-6
Bump super-linter/super-linter from 5 to 6
2 parents c45f206 + 23bf5e8 commit b0b55d4

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.github/linters/.checkov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
quiet: true
2+
skip-check:
3+
- CKV_GHA_7

.github/workflows/codeql-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ on:
2121
schedule:
2222
- cron: '19 4 * * 3'
2323

24+
permissions:
25+
actions: read
26+
contents: read
27+
security-events: write
28+
2429
jobs:
2530
analyze:
2631
name: Analyze
2732
runs-on: ubuntu-latest
2833

29-
permissions:
30-
actions: read
31-
contents: read
32-
security-events: write
33-
3434
strategy:
3535
fail-fast: false
3636
matrix:

.github/workflows/example-workflow.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
default: 'World'
1010
type: string
1111

12+
permissions:
13+
actions: read
14+
contents: read
15+
1216
jobs:
1317
say-hello:
1418
name: Say Hello

.github/workflows/linter.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
- name: Checkout
2121
id: checkout
2222
uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 0
2325

2426
- name: Setup Node.js
2527
id: setup-node
@@ -34,7 +36,7 @@ jobs:
3436

3537
- name: Lint Codebase
3638
id: super-linter
37-
uses: super-linter/super-linter/slim@v5
39+
uses: super-linter/super-linter/slim@v6
3840
env:
3941
DEFAULT_BRANCH: main
4042
FILTER_REGEX_EXCLUDE: dist/**/*

0 commit comments

Comments
 (0)