Skip to content

Bump github/codeql-action from 3.24.10 to 3.25.3 #1164

Bump github/codeql-action from 3.24.10 to 3.25.3

Bump github/codeql-action from 3.24.10 to 3.25.3 #1164

Workflow file for this run

# Copyright (c) Microsoft Corporation
# SPDX-License-Identifier: MIT
# Main YML file for the CICD pipeline
name: CI/CD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Run on a daily schedule to perform the full set of tests.
schedule:
- cron: '00 21 * * *'
permissions:
contents: read
packages: write
concurrency:
# Cancel any CI/CD workflow currently in progress for the same PR.
# Allow running concurrently with any other commits.
group: cicd-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
windows_release:
uses: ./.github/workflows/Build.yml
with:
platform: windows-2019
configuration: RelWithDebInfo
enable_sanitizers: false
enable_coverage: false
windows_debug:
uses: ./.github/workflows/Build.yml
with:
platform: windows-2019
configuration: Debug
enable_sanitizers: false
enable_coverage: false
windows_release_2022:
uses: ./.github/workflows/Build.yml
with:
platform: windows-2022
configuration: RelWithDebInfo
enable_sanitizers: false
enable_coverage: false
windows_debug_2022:
uses: ./.github/workflows/Build.yml
with:
platform: windows-2022
configuration: Debug
enable_sanitizers: false
enable_coverage: false
ubuntu_release:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Release
enable_sanitizers: false
enable_coverage: false
publish_docker: true
ubuntu_debug:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Debug
enable_sanitizers: false
enable_coverage: false
ubuntu_release_sanitizers:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Release
enable_sanitizers: true
enable_coverage: false
ubuntu_debug_sanitizers:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Debug
enable_sanitizers: true
enable_coverage: false
ubuntu_release_coverage:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Release
enable_sanitizers: false
enable_coverage: true
ubuntu_debug_coverage:
uses: ./.github/workflows/Build.yml
with:
platform: ubuntu-latest
configuration: Debug
enable_sanitizers: false
enable_coverage: true
macos_release:
uses: ./.github/workflows/Build.yml
with:
platform: macos-11
configuration: Release
macos_debug:
uses: ./.github/workflows/Build.yml
with:
platform: macos-11
configuration: Debug
finish:
needs:
- ubuntu_release_coverage
- ubuntu_debug_coverage
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- name: Coveralls Finished
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 # v2.2.3
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true