Skip to content

Commit 387918d

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/npm-development-1b4d4048d0
2 parents b90363e + 0ba4cc7 commit 387918d

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

.checkov.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.checkov.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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
8+
skip-check:
9+
- CKV_GHA_7

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# Setup Node.js using the version specified in `.node-version`.
3535
- name: Setup Node.js
3636
id: setup-node
37-
uses: actions/setup-node@v5
37+
uses: actions/setup-node@v6
3838
with:
3939
node-version-file: .node-version
4040
cache: npm
@@ -70,7 +70,7 @@ jobs:
7070
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
7171
name: Upload Artifact
7272
id: upload
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v5
7474
with:
7575
name: dist
7676
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
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@v3
48+
uses: github/codeql-action/init@v4
4949
with:
5050
languages: ${{ matrix.language }}
5151
config-file: ./.github/codeql/codeql-config.yml
@@ -57,7 +57,7 @@ jobs:
5757
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5858
# If this step fails, then you should remove it and run the build manually (see below)
5959
- name: Autobuild
60-
uses: github/codeql-action/autobuild@v3
60+
uses: github/codeql-action/autobuild@v4
6161

6262
# ℹ️ Command-line programs to run using the OS shell.
6363
# 📚 https://git.io/JvXDl
@@ -71,4 +71,4 @@ jobs:
7171
# make release
7272

7373
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@v3
74+
uses: github/codeql-action/analyze@v4

.github/workflows/example-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
who-to-greet:
77
description: Who to greet in the log
88
required: true
9-
default: 'World'
9+
default: World
1010
type: string
1111

1212
permissions:

.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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,28 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
# Checkout the repository.
2827
- name: Checkout
2928
id: checkout
3029
uses: actions/checkout@v5
3130
with:
3231
fetch-depth: 0
3332

34-
# Setup Node.js using the version specified in `.node-version`.
3533
- name: Setup Node.js
3634
id: setup-node
37-
uses: actions/setup-node@v5
35+
uses: actions/setup-node@v6
3836
with:
3937
node-version-file: .node-version
4038
cache: npm
4139

42-
# Install dependencies using `npm ci`.
4340
- name: Install Dependencies
4441
id: install
4542
run: npm ci
4643

47-
# Lint the codebase using the `super-linter/super-linter` action.
4844
- name: Lint Codebase
4945
id: super-linter
5046
uses: super-linter/super-linter/slim@v8
5147
env:
48+
CHECKOV_FILE_NAME: .checkov.yml
5249
DEFAULT_BRANCH: main
5350
FILTER_REGEX_EXCLUDE: dist/**/*
5451
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)