Merge branch 'main' into dependabot/npm_and_yarn/npm-development-7aec199364

This commit is contained in:
Nick Alteen
2025-10-31 10:41:56 -04:00
committed by GitHub
3 changed files with 17 additions and 4 deletions

7
.checkov.yml Normal file
View File

@@ -0,0 +1,7 @@
# See: https://www.checkov.io/1.Welcome/Quick%20Start.html
compact: true
quiet: true
skip-path:
- coverage
- node_modules

View File

@@ -34,15 +34,15 @@ jobs:
- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
source-root: src
- name: Autobuild
id: autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4

View File

@@ -1,3 +1,8 @@
# This workflow will lint the entire codebase using the
# `super-linter/super-linter` action.
#
# For more information, see the super-linter repository:
# https://github.com/super-linter/super-linter
name: Lint Codebase
on:
@@ -27,7 +32,7 @@ jobs:
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
@@ -40,6 +45,7 @@ jobs:
id: super-linter
uses: super-linter/super-linter/slim@v8
env:
CHECKOV_FILE_NAME: .checkov.yml
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: dist/**/*
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}