...

Text file src/github.com/onsi/ginkgo/v2/.github/workflows/codeql-analysis.yml

Documentation: github.com/onsi/ginkgo/v2/.github/workflows

     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#
    12name: "CodeQL"
    13
    14on:
    15  push:
    16    branches: [ master ]
    17  pull_request:
    18    # The branches below must be a subset of the branches above
    19    branches: [ master ]
    20  schedule:
    21    - cron: '21 7 * * 0'
    22
    23permissions:
    24  contents: read
    25
    26jobs:
    27  analyze:
    28    permissions:
    29      actions: read  # for github/codeql-action/init to get workflow details
    30      contents: read  # for actions/checkout to fetch code
    31      security-events: write  # for github/codeql-action/autobuild to send a status report
    32    name: Analyze
    33    runs-on: ubuntu-latest
    34
    35    strategy:
    36      fail-fast: false
    37      matrix:
    38        language: [ 'go', 'ruby' ]
    39        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
    40        # Learn more:
    41        # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
    42
    43    steps:
    44    - name: Checkout repository
    45      uses: actions/checkout@v4
    46
    47    # Initializes the CodeQL tools for scanning.
    48    - name: Initialize CodeQL
    49      uses: github/codeql-action/init@v3
    50      with:
    51        languages: ${{ matrix.language }}
    52        # If you wish to specify custom queries, you can do so here or in a config file.
    53        # By default, queries listed here will override any specified in a config file.
    54        # Prefix the list here with "+" to use these queries and those in the config file.
    55        # queries: ./path/to/local/query, your-org/your-repo/queries@main
    56
    57    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
    58    # If this step fails, then you should remove it and run the build manually (see below)
    59    - name: Autobuild
    60      uses: github/codeql-action/autobuild@v3
    61
    62    # ℹī¸ Command-line programs to run using the OS shell.
    63    # 📚 https://git.io/JvXDl
    64
    65    # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
    66    #    and modify them (or add more) to build your code if your project
    67    #    uses a compiled language
    68
    69    #- run: |
    70    #   make bootstrap
    71    #   make release
    72
    73    - name: Perform CodeQL Analysis
    74      uses: github/codeql-action/analyze@v3

View as plain text