File: codeql-analysis.yml

package info (click to toggle)
jetty12 12.0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 87,568 kB
  • sloc: java: 734,482; xml: 58,941; javascript: 1,041; sh: 840; jsp: 391; sql: 40; makefile: 6
file content (109 lines) | stat: -rw-r--r-- 3,711 bytes parent folder | download | duplicates (2)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: "CodeQL"

on:
  push:
    branches: [ 'jetty-10.[1-9]?[0-9].x', 'jetty-11.[1-9]?[0-9].x', 'jetty-12.[1-9]?[0-9].x' ]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [ 'jetty-10.[1-9]?[0-9].x', 'jetty-11.[1-9]?[0-9].x', 'jetty-12.[1-9]?[0-9].x' ]
  schedule:
    - cron: '22 1 * * 2'

permissions:
  contents: read

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest
    permissions:
      actions: read
      contents: read
      security-events: write

    strategy:
      fail-fast: false
      matrix:
        languages:
          - java
        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
        # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

    steps:
      - name: Checkout repository
        uses: actions/checkout@v5

      # Install and setup JDK 11
      - name: Setup JDK 11
        uses: actions/setup-java@v4
        if: ${{
          startsWith(github.ref, 'refs/heads/jetty-10.') ||
          startsWith(github.ref, 'refs/heads/jetty-11.') ||
          startsWith(github.base_ref, 'jetty-10.') ||
          startsWith(github.base_ref, 'jetty-11.')
          }}
        with:
          distribution: temurin
          java-version: 11

      # Install and setup JDK 17
      - name: Setup JDK 17
        uses: actions/setup-java@v4
        if: ${{
          startsWith(github.ref, 'refs/heads/jetty-12.') ||
          startsWith(github.base_ref, 'jetty-12.')
          }}
        with:
          distribution: temurin
          java-version: 17

      # Initializes the CodeQL tools for scanning.
      - name: Initialize CodeQL
        uses: github/codeql-action/init@v3
        with:
          languages: ${{ matrix.languages }}
          # 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.

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

      - name: Prepare Mimir
        shell: bash
        run: |
          mkdir -p ~/.mimir
          cp .github/ci-mimir-daemon.properties ~/.mimir/daemon.properties

      - name: Handle Mimir caches
        uses: actions/cache@v4
        with:
          path: ~/.mimir/local
          key: mimir-codeql-${{ hashFiles('**/pom.xml') }}
          restore-keys: |
            mimir-codeql-
            mimir-

      - name: Set up Maven
        run:
          mvn -e -B -V org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.9"

      - name: Clean install dependencies and build
        env:
          MAVEN_OPTS: "-Djava.awt.headless=true -client -Xmx4G -Xms4G"
        run:
          ./mvnw clean install -P fast -B -V


      # â„šī¸ Command-line programs to run using the OS shell.
      # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

      #   If the Autobuild fails above, remove it and uncomment the following three lines.
      #   modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

      # - run: |
      #   echo "Run, Build Application using script"
      #   ./location_of_script_within_repo/buildscript.sh

      - name: Perform CodeQL Analysis
        uses: github/codeql-action/analyze@v3