mirror of
https://github.com/google/brotli.git
synced 2026-02-15 05:35:14 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...1af3b93b68)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
82 lines
2.4 KiB
YAML
82 lines
2.4 KiB
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ "master" ]
|
|
schedule:
|
|
- cron: '18 15 * * 0'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: 'ubuntu-latest'
|
|
timeout-minutes: 360
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [ 'cpp', 'java', 'javascript', 'python' ]
|
|
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v3.29.5
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
# CodeQL is currently crashing on files with large lists:
|
|
# https://github.com/github/codeql/issues/13656
|
|
config: |
|
|
paths-ignore:
|
|
- research
|
|
- js/test_data.*
|
|
|
|
- if: matrix.language == 'cpp'
|
|
name: Build CPP
|
|
uses: github/codeql-action/autobuild@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v3.29.5
|
|
|
|
- if: matrix.language == 'cpp' || matrix.language == 'java'
|
|
name: Build Java
|
|
run: |
|
|
cd ${GITHUB_WORKSPACE}/java
|
|
bazelisk build --spawn_strategy=local --nouse_action_cache -c opt ...:all
|
|
|
|
- if: matrix.language == 'javascript'
|
|
name: Build JS
|
|
uses: github/codeql-action/autobuild@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v3.29.5
|
|
|
|
- if: matrix.language == 'cpp' || matrix.language == 'python'
|
|
name: Build Python
|
|
run: |
|
|
python setup.py build_ext
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v3.29.5
|
|
with:
|
|
category: "/language:${{matrix.language}}"
|
|
ref: "${{ github.ref != 'master' && github.ref || '/refs/heads/master' }}"
|
|
sha: "${{ github.sha }}"
|