Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

ci: bump aquasecurity/trivy-action from 0.34.0 to 0.34.1 in the github-actions group #156

ci: bump aquasecurity/trivy-action from 0.34.0 to 0.34.1 in the github-actions group

ci: bump aquasecurity/trivy-action from 0.34.0 to 0.34.1 in the github-actions group #156

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions: read-all
jobs:
build-and-test:
name: Build and Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: CMake version
run: cmake --version
- name: Configure (Unix)
if: runner.os != 'Windows'
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build (Unix)
if: runner.os != 'Windows'
run: cmake --build build --parallel
- name: Test (Unix)
if: runner.os != 'Windows'
run: ctest --test-dir build --output-on-failure
- name: Configure (Windows)
if: runner.os == 'Windows'
run: cmake -S . -B build -A x64
- name: Build (Windows)
if: runner.os == 'Windows'
run: cmake --build build --config Release --parallel
- name: Test (Windows)
if: runner.os == 'Windows'
run: ctest --test-dir build -C Release --output-on-failure