File: codeql-analysis.yml

package info (click to toggle)
junit5 5.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,748 kB
  • sloc: java: 98,014; xml: 1,840; sh: 148; ruby: 111; javascript: 59; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: "CodeQL"

on:
  push:
    branches:
      - main
      - 'releases/**'
  pull_request:
    # The branches below must be a subset of the branches above
    branches:
      - main
      - 'releases/**'
  schedule:
    - cron: '0 19 * * 3'

env:
  GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest
    permissions:
      security-events: write
    strategy:
      fail-fast: false
      matrix:
        language:
          - java
          - javascript
    steps:
    - name: Check out repository
      uses: actions/checkout@v3
    - name: Initialize CodeQL
      uses: github/codeql-action/init@v2
      with:
        languages: ${{ matrix.language }}
        tools: latest
    - name: Build
      uses: ./.github/actions/run-gradle
      with:
        arguments: |
          --no-build-cache
          -Dscan.tag.CodeQL
          allMainClasses
    - name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v2