ci: run CodeQL on release-54 as well as on master
This commit is contained in:
parent
b2a6e94961
commit
06b7d8c293
|
@ -4,9 +4,6 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '33 14 * * 4'
|
- cron: '33 14 * * 4'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
|
||||||
ref:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -25,13 +22,18 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
language: [ 'cpp', 'python' ]
|
branch:
|
||||||
|
- master
|
||||||
|
- release-54
|
||||||
|
language:
|
||||||
|
- cpp
|
||||||
|
- python
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.inputs.ref }}
|
ref: ${{ matrix.branch }}
|
||||||
|
|
||||||
- name: Ensure git safe dir
|
- name: Ensure git safe dir
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue