Skip to content

chore(deps): update alpine docker tag to v3.20.0 #159

chore(deps): update alpine docker tag to v3.20.0

chore(deps): update alpine docker tag to v3.20.0 #159

Workflow file for this run

name: Static Code Analysis
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: none
jobs:
scan-build:
name: Run Clang Analyzer
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
env:
CC: clang-17
CXX: clang++-17
CCC_CC: clang-17
CCC_CXX: clang++-17
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
SCANBUILD_DIR: /tmp/scanbuild
steps:
- name: Check out code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Run analysis
run: |
scan-build-17 cmake -B build
scan-build-17 --force-analyze-debug-code -sarif --status-bugs -no-failure-reports -o "${SCANBUILD_DIR}" --exclude build cmake --build build
continue-on-error: true
id: scanbuild
- name: Merge SARIF reports
run: sarif-multitool merge "${{ env.SCANBUILD_DIR }}/" --recurse --output-directory=/tmp --output-file=scan-build.sarif
- name: Upload scan results
uses: github/codeql-action/upload-sarif@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
with:
sarif_file: /tmp/scan-build.sarif
category: scanbuild
continue-on-error: true
- name: Set exit code
run: exit 1
if: steps.scanbuild.outcome == 'failure'