Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

Check failure on line 12 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

12:7 [quoted-strings] string value is redundantly quoted with single quotes

on:
push:
branches: ["main"]

Check failure on line 16 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

16:16 [quoted-strings] string value is redundantly quoted with single quotes
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]

Check failure on line 19 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

19:16 [quoted-strings] string value is redundantly quoted with single quotes
schedule:
- cron: "0 0 * * 1"

Check failure on line 21 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

21:13 [quoted-strings] string value is redundantly quoted with single quotes

permissions:
contents: read

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: ["cpp", "javascript", "python", "typescript"]

Check failure on line 38 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

38:20 [quoted-strings] string value is redundantly quoted with single quotes

Check failure on line 38 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

38:27 [quoted-strings] string value is redundantly quoted with single quotes

Check failure on line 38 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

38:41 [quoted-strings] string value is redundantly quoted with single quotes
# CodeQL supports [ $supported-codeql-languages ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 44 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

44:73 [comments] too few spaces before comment

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11

Check warning on line 48 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

48:82 [comments] too few spaces before comment
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11

Check warning on line 58 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

58:87 [comments] too few spaces before comment

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11

Check warning on line 71 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

71:85 [comments] too few spaces before comment
with:
category: "/language:${{matrix.language}}"
22 changes: 22 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Dependency Review Action
#
# This Action will scan dependency manifest files that change as part of a Pull Request,
# surfacing known-vulnerable versions of the packages declared or updated in the PR.
# Once installed, if the workflow run is marked as required,
# PRs introducing known-vulnerable packages will be blocked from merging.
#
# Source repository: https://github.com/actions/dependency-review-action
name: 'Dependency Review'

Check failure on line 9 in .github/workflows/dependency-review.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

9:7 [quoted-strings] string value is redundantly quoted with single quotes
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'

Check failure on line 19 in .github/workflows/dependency-review.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

19:15 [quoted-strings] string value is redundantly quoted with single quotes
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 20 in .github/workflows/dependency-review.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

20:73 [comments] too few spaces before comment
- name: 'Dependency Review'

Check failure on line 21 in .github/workflows/dependency-review.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

21:15 [quoted-strings] string value is redundantly quoted with single quotes
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0

Check warning on line 22 in .github/workflows/dependency-review.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

22:89 [comments] too few spaces before comment
Loading