Skip to content

Commit 7c6f524

Browse files
Merge pull request #95 from delphix-integrations/update-codeql-patch-1
HUBS-2464 Update codeql.yml to V3
2 parents 7db746b + e79d8ae commit 7c6f524

File tree

1 file changed

+45
-32
lines changed

1 file changed

+45
-32
lines changed

.github/workflows/codeql.yml

Lines changed: 45 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# Copyright (c) 2023, 2024 by Delphix. All rights reserved.
33
#
44
#
5+
#
6+
# Copyright (c) 2023, 2024 by Delphix. All rights reserved.
7+
#
8+
#
59
# For most projects, this workflow file will not need changing; you simply need
610
# to commit it to your repository.
711
#
@@ -17,71 +21,80 @@ name: "CodeQL"
1721

1822
on:
1923
push:
20-
branches: [ main, develop ]
24+
branches: [ "main", "**/*", "dependabot/**/*", "dlpx/**/*", "gh-readonly-queue/**/*", "projects/**/*" ]
2125
pull_request:
22-
# The branches below must be a subset of the branches above
23-
branches: [ "develop" ]
26+
branches: [ "main", "**/*", "dependabot/**/*", "dlpx/**/*", "gh-readonly-queue/**/*", "projects/**/*" ]
2427
schedule:
25-
- cron: '40 13 * * 5'
28+
- cron: '30 11 * * 1'
2629

2730
jobs:
2831
analyze:
29-
name: Analyze
32+
name: Analyze (${{ matrix.language }})
3033
# Runner size impacts CodeQL analysis time. To learn more, please see:
3134
# - https://gh.io/recommended-hardware-resources-for-running-codeql
3235
# - https://gh.io/supported-runners-and-hardware-resources
33-
# - https://gh.io/using-larger-runners
34-
# Consider using larger runners for possible analysis time improvements.
36+
# - https://gh.io/using-larger-runners (GitHub.com only)
37+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
3538
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
3639
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
3740
permissions:
41+
# required for all workflows
42+
security-events: write
43+
44+
# required to fetch internal or private CodeQL packs
45+
packages: read
46+
47+
# only required for workflows in private repositories
3848
actions: read
3949
contents: read
40-
security-events: write
4150

4251
strategy:
4352
fail-fast: false
4453
matrix:
45-
language: [ 'go' ]
46-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
47-
# Use only 'java' to analyze code written in Java, Kotlin or both
48-
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
49-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
50-
54+
include:
55+
- language: go
56+
build-mode: autobuild
57+
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
58+
# Use `c-cpp` to analyze code written in C, C++ or both
59+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
60+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
61+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
62+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
63+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
64+
# 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
5165
steps:
5266
- name: Checkout repository
53-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
5468

5569
# Initializes the CodeQL tools for scanning.
5670
- name: Initialize CodeQL
57-
uses: github/codeql-action/init@v2
71+
uses: github/codeql-action/init@v3
5872
with:
5973
languages: ${{ matrix.language }}
60-
queries: security-extended,security-and-quality
74+
build-mode: ${{ matrix.build-mode }}
6175
# If you wish to specify custom queries, you can do so here or in a config file.
6276
# By default, queries listed here will override any specified in a config file.
6377
# Prefix the list here with "+" to use these queries and those in the config file.
6478

6579
# 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
6680
# queries: security-extended,security-and-quality
6781

68-
69-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
70-
# If this step fails, then you should remove it and run the build manually (see below)
71-
- if: matrix.language == 'go'
72-
name: Autobuild
73-
uses: github/codeql-action/autobuild@v2
82+
# If the analyze step fails for one of the languages you are analyzing with
83+
# "We were unable to automatically build your code", modify the matrix above
84+
# to set the build mode to "manual" for that language. Then modify this step
85+
# to build your code.
7486
# ℹ️ Command-line programs to run using the OS shell.
7587
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
76-
77-
# If the Autobuild fails above, remove it and uncomment the following three lines.
78-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
79-
80-
# - run: |
81-
# echo "Run, Build Application using script"
82-
# ./location_of_script_within_repo/buildscript.sh
83-
88+
- if: matrix.build-mode == 'manual'
89+
shell: bash
90+
run: |
91+
echo 'If you are using a "manual" build mode for one or more of the' \
92+
'languages you are analyzing, replace this with the commands to build' \
93+
'your code, for example:'
94+
echo ' make bootstrap'
95+
echo ' make release'
96+
exit 1
8497
- name: Perform CodeQL Analysis
85-
uses: github/codeql-action/analyze@v2
98+
uses: github/codeql-action/analyze@v3
8699
with:
87100
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)