Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for CodeQL (0.4 seconds)

  1. .github/workflows/codeql-analysis.yml

        #    uses a compiled language
    
        #- run: |
        #   make bootstrap
        #   make release
    
        - name: Perform CodeQL Analysis
          uses: github/codeql-action/analyze@v4
          with:
            config-file: ./.github/codeql/codeql-config.yml
    
        - name: Cleanup Gradle Cache
          # Cleans up the Gradle caches before being cached
          run: |
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 11 22:12:03 GMT 2025
    - 4K bytes
    - Click Count (0)
  2. .github/workflows/codeql-analysis.init.gradle

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    allprojects {
        tasks.withType(JavaCompile).configureEach {
            outputs.doNotCacheIf("CodeQL scanning", { true })
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sat Oct 10 05:36:54 GMT 2020
    - 745 bytes
    - Click Count (0)
  3. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
    
        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v3
          with:
            languages: ${{ matrix.language }}
            # If you wish to specify custom queries, you can do so here or in a config file.
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. .github/codeql-config.yml

    ame: "Gradle CodeQL Configuration"
    
    paths-ignore:
      - "**/build/"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 22 21:41:32 GMT 2021
    - 75 bytes
    - Click Count (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

     */
    object BuildEnvironment {
    
        /**
         * A selection of environment variables injected into the environment by the `codeql-env.sh` script.
         */
        private
        val CODEQL_ENVIRONMENT_VARIABLES = arrayOf(
            "CODEQL_JAVA_HOME",
            "CODEQL_EXTRACTOR_JAVA_SCRATCH_DIR",
            "CODEQL_ACTION_RUN_MODE",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  6. CLAUDE.md

    │           ├── ContentOutputStreamTest.java
    │           └── IOIntegrationTest.java
    ├── .github/workflows/             # CI/CD configuration
    │   ├── maven.yml                  # Build and test workflow
    │   └── codeql-analysis.yml        # Security analysis
    ├── pom.xml                        # Maven build configuration
    ├── README.md                      # Project documentation
    └── CLAUDE.md                      # This file
    ```
    
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Jan 08 07:28:24 GMT 2026
    - 4.3K bytes
    - Click Count (0)
Back to Top