This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aminya/setup-cpp](https://redirect.github.com/aminya/setup-cpp) | action | patch | `v1.7.1` -> `v1.7.2` | | ghcr.io/llvm/ci-ubuntu-24.04-abi-tests | container | digest | `01e66b0` -> `f80125c` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v4.31.2` -> `v4.31.3` | | llvm/actions | action | digest | `42d8057` -> `5dd9550` |
38 lines
891 B
YAML
38 lines
891 B
YAML
name: Github Actions CodeQL
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/**'
|
|
schedule:
|
|
- cron: '30 0 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
codeql:
|
|
name: 'Github Actions CodeQL'
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
security-events: write
|
|
steps:
|
|
- name: Checkout LLVM
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
sparse-checkout: |
|
|
.github/
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3
|
|
with:
|
|
languages: actions
|
|
queries: security-extended
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3
|