Skip to content

Commit 974c340

Browse files
authored
ci(common): add CodeQL schedule on workdays (#1456)
1 parent bb31dfa commit 974c340

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: codeql
13+
permissions: {} # No permissions needed at workflow level
14+
15+
on:
16+
schedule:
17+
- cron: '30 5 * * 1-5'
18+
19+
jobs:
20+
analyze:
21+
name: codeql/analyze-${{ matrix.language }}
22+
# Runner size impacts CodeQL analysis time. To learn more, please see:
23+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
24+
# - https://gh.io/supported-runners-and-hardware-resources
25+
# - https://gh.io/using-larger-runners (GitHub.com only)
26+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
27+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
28+
permissions:
29+
security-events: write # Required for all workflows to upload CodeQL results
30+
packages: read # Required to fetch internal or private CodeQL packs
31+
actions: read # Required for workflows in private repositories
32+
contents: read # Required to checkout repository code
33+
34+
strategy:
35+
fail-fast: false
36+
matrix:
37+
include:
38+
- language: actions
39+
build-mode: none
40+
- language: javascript-typescript
41+
build-mode: none
42+
- language: python
43+
build-mode: none
44+
- language: rust
45+
build-mode: none
46+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
47+
# Use `c-cpp` to analyze code written in C, C++ or both
48+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
49+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
50+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
51+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
52+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
53+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
54+
steps:
55+
- name: Checkout repository
56+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
57+
with:
58+
persist-credentials: false
59+
# Add any setup steps before running the `github/codeql-action/init` action.
60+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
61+
# or others). This is typically only required for manual builds.
62+
# - name: Setup runtime (example)
63+
# uses: actions/setup-example@v1
64+
65+
# Initializes the CodeQL tools for scanning.
66+
- name: Initialize CodeQL
67+
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
68+
with:
69+
languages: ${{ matrix.language }}
70+
build-mode: ${{ matrix.build-mode }}
71+
# If you wish to specify custom queries, you can do so here or in a config file.
72+
# By default, queries listed here will override any specified in a config file.
73+
# Prefix the list here with "+" to use these queries and those in the config file.
74+
75+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
76+
# queries: security-extended,security-and-quality
77+
78+
- name: Perform CodeQL Analysis
79+
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
80+
with:
81+
category: '/language:${{matrix.language}}'

0 commit comments

Comments
 (0)