This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-xml.git
commit e6c2bb6347652faaa3783a0d7e3e9828ccaceb3e Author: Gary Gregory <[email protected]> AuthorDate: Sun Aug 30 09:36:44 2026 -0400 Normalize CodeQL to other Commons components. --- .github/workflows/codeql-analysis.yml | 69 ++++++++++++++++++++++++++++++----- 1 file changed, 60 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 68247ef..f3953f4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -13,23 +13,74 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: CodeQL +name: "CodeQL" on: push: - branches: [ "main" ] - pull_request: { } + branches: [ master ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ master ] schedule: - - cron: '33 9 * * 4' # Randomize this expression + - cron: '33 9 * * 4' -# Explicitly drop all permissions for security. -permissions: { } +permissions: + contents: read jobs: - codeql: - # Intentionally not pinned: maintained by the same PMC. - uses: apache/commons-parent/.github/workflows/codeql-analysis-reusable.yml@master + analyze: + name: Analyze + runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write + + strategy: + max-parallel: 20 + fail-fast: false + matrix: + language: [ 'java' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://git.io/codeql-language-support + + steps: + - name: Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + persist-credentials: false + - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 #v6.1.0 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # 4.37.8 + 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. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + + # 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@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # 4.37.8 + + # â¹ï¸ Command-line programs to run using the OS shell. + # ð https://git.io/JvXDl + + # âï¸ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # 4.37.8
