Skip to content

Commit 2a3a0e5

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/npm-development-7abdc59258
2 parents 287dc9b + b3afd47 commit 2a3a0e5

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.checkov.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See: https://www.checkov.io/1.Welcome/Quick%20Start.html
2+
3+
compact: true
4+
quiet: true
5+
skip-path:
6+
- coverage
7+
- node_modules

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Setup Node.js
3434
id: setup-node
35-
uses: actions/setup-node@v5
35+
uses: actions/setup-node@v6
3636
with:
3737
node-version-file: .node-version
3838
cache: npm
@@ -66,7 +66,7 @@ jobs:
6666
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
6767
name: Upload Artifact
6868
id: upload
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: dist
7272
path: dist/

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Setup Node.js
2525
id: setup-node
26-
uses: actions/setup-node@v5
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version-file: .node-version
2929
cache: npm

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ jobs:
3434

3535
- name: Initialize CodeQL
3636
id: initialize
37-
uses: github/codeql-action/init@v3
37+
uses: github/codeql-action/init@v4
3838
with:
3939
config-file: .github/codeql/codeql-config.yml
4040
languages: ${{ matrix.language }}
4141
source-root: src
4242

4343
- name: Autobuild
4444
id: autobuild
45-
uses: github/codeql-action/autobuild@v3
45+
uses: github/codeql-action/autobuild@v4
4646

4747
- name: Perform CodeQL Analysis
4848
id: analyze
49-
uses: github/codeql-action/analyze@v3
49+
uses: github/codeql-action/analyze@v4

.github/workflows/licensed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Setup Node.js
3333
id: setup-node
34-
uses: actions/setup-node@v5
34+
uses: actions/setup-node@v6
3535
with:
3636
node-version-file: .node-version
3737
cache: npm

.github/workflows/linter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Setup Node.js
3434
id: setup-node
35-
uses: actions/setup-node@v5
35+
uses: actions/setup-node@v6
3636
with:
3737
node-version-file: .node-version
3838
cache: npm
@@ -45,6 +45,7 @@ jobs:
4545
id: super-linter
4646
uses: super-linter/super-linter/slim@v8
4747
env:
48+
CHECKOV_FILE_NAME: .checkov.yml
4849
DEFAULT_BRANCH: main
4950
FILTER_REGEX_EXCLUDE: dist/**/*
5051
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)