Skip to content

Commit 874ee93

Browse files
committed
Go back to CodeQL default
1 parent b50e1ba commit 874ee93

File tree

1 file changed

+79
-49
lines changed

1 file changed

+79
-49
lines changed

.github/workflows/codeql.yml

Lines changed: 79 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,100 @@
1-
name: CodeQL
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 Advanced"
213

314
on:
415
push:
5-
branches:
6-
- main
7-
- release/*
16+
branches: [ "main" ]
817
pull_request:
9-
branches:
10-
- main
11-
- release/*
12-
# TODO (trask) adding this to the merge queue causes the merge queue to fail
13-
# see related issues
14-
# - https://github.com/github/codeql-action/issues/1572
15-
# - https://github.com/github/codeql-action/issues/1537
16-
# - https://github.com/github/codeql-action/issues/2691
17-
# merge_group:
18+
branches: [ "main" ]
1819
schedule:
19-
- cron: "29 13 * * 2" # weekly at 13:29 UTC on Tuesday
20-
21-
permissions:
22-
contents: read
20+
- cron: '37 13 * * 5'
2321

2422
jobs:
2523
analyze:
2624
name: Analyze (${{ matrix.language }})
25+
# Runner size impacts CodeQL analysis time. To learn more, please see:
26+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
27+
# - https://gh.io/supported-runners-and-hardware-resources
28+
# - https://gh.io/using-larger-runners (GitHub.com only)
29+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
30+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
2731
permissions:
32+
# required for all workflows
33+
security-events: write
34+
35+
# required to fetch internal or private CodeQL packs
36+
packages: read
37+
38+
# only required for workflows in private repositories
39+
actions: read
2840
contents: read
29-
actions: read # for github/codeql-action/init to get workflow details
30-
security-events: write # for github/codeql-action/analyze to upload SARIF results
41+
3142
strategy:
3243
fail-fast: false
3344
matrix:
3445
include:
35-
- language: actions
36-
- language: java
37-
runs-on: ubuntu-latest
46+
- language: actions
47+
build-mode: none
48+
- language: java-kotlin
49+
build-mode: autobuild
50+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
51+
# Use `c-cpp` to analyze code written in C, C++ or both
52+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
53+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
54+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
55+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
56+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
57+
# 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
3858
steps:
39-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
59+
- name: Checkout repository
60+
uses: actions/checkout@v4
4061

41-
- name: Set up Java 17
42-
if: matrix.language == 'java'
43-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
44-
with:
45-
distribution: temurin
46-
java-version: 17
62+
# Add any setup steps before running the `github/codeql-action/init` action.
63+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
64+
# or others). This is typically only required for manual builds.
65+
# - name: Setup runtime (example)
66+
# uses: actions/setup-example@v1
4767

48-
- name: Set up gradle
49-
if: matrix.language == 'java'
50-
uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2
68+
# Initializes the CodeQL tools for scanning.
69+
- name: Initialize CodeQL
70+
uses: github/codeql-action/init@v3
71+
with:
72+
languages: ${{ matrix.language }}
73+
build-mode: ${{ matrix.build-mode }}
74+
# If you wish to specify custom queries, you can do so here or in a config file.
75+
# By default, queries listed here will override any specified in a config file.
76+
# Prefix the list here with "+" to use these queries and those in the config file.
5177

52-
- name: Initialize CodeQL
53-
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
54-
with:
55-
languages: ${{ matrix.language }}
56-
# using "latest" helps to keep up with the latest Kotlin support
57-
# see https://github.com/github/codeql-action/issues/1555#issuecomment-1452228433
58-
tools: latest
78+
# 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
79+
# queries: security-extended,security-and-quality
5980

60-
- name: Assemble
61-
if: matrix.language == 'java'
62-
# --no-build-cache is required for codeql to analyze all modules
63-
# --no-daemon is required for codeql to observe the compilation
64-
# (see https://docs.github.com/en/code-security/codeql-cli/getting-started-with-the-codeql-cli/preparing-your-code-for-codeql-analysis#specifying-build-commands)
65-
run: ./gradlew assemble --no-build-cache --no-daemon
81+
# If the analyze step fails for one of the languages you are analyzing with
82+
# "We were unable to automatically build your code", modify the matrix above
83+
# to set the build mode to "manual" for that language. Then modify this step
84+
# to build your code.
85+
# ℹ️ Command-line programs to run using the OS shell.
86+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87+
- if: matrix.build-mode == 'manual'
88+
shell: bash
89+
run: |
90+
echo 'If you are using a "manual" build mode for one or more of the' \
91+
'languages you are analyzing, replace this with the commands to build' \
92+
'your code, for example:'
93+
echo ' make bootstrap'
94+
echo ' make release'
95+
exit 1
6696
67-
- name: Perform CodeQL analysis
68-
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
69-
with:
70-
category: "/language:${{matrix.language}}"
97+
- name: Perform CodeQL Analysis
98+
uses: github/codeql-action/analyze@v3
99+
with:
100+
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)