Repair macOS CI workflow ahead of combining all CI workflows (#7350)
* Test * Fixed Mac image names * Version lock to macOS 14 * Change name of Homebrew Qt package * Use CMake to build * Remove dep already installed * Remove version source * Remove env var not needed * Add homebrew path to CMake presets * Revert "Add homebrew path to CMake presets" This reverts commit 6b1342cdc2f412cad3e840e51e3e018dd7470d21. * Add Qt prefix to workflow * Upgrade CodeQL analysis to v2 * Rename SonarCloud workflow for convention * Delete test file * Upgrade CodeQL analysis to v3
This commit is contained in:
21
.github/workflows/codeql-analysis.yml
vendored
21
.github/workflows/codeql-analysis.yml
vendored
@ -1,10 +1,9 @@
|
||||
name: "CodeQL Analysis"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
concurrency:
|
||||
@ -47,23 +46,13 @@ jobs:
|
||||
- name: Checkout git repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
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.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v1
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
uses: github/codeql-action/autobuild@v3
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
||||
uses: github/codeql-action/analyze@v3
|
||||
|
||||
Reference in New Issue
Block a user