Skip to content

chore(deps): update peter-evans/create-pull-request action to v8.1.1 #419

chore(deps): update peter-evans/create-pull-request action to v8.1.1

chore(deps): update peter-evans/create-pull-request action to v8.1.1 #419

Workflow file for this run

name: Lint C++ code
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: none
jobs:
lint:
name: clang-format (${{ matrix.path }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
path:
- examples
- src
- test
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
ghcr.io:443
github.com:443
pkg-containers.githubusercontent.com:443
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: clang-format Check
uses: jidicula/clang-format-action@3a18028048f01a66653b4e3bf8d968d2e7e2cb8b # v4.17.0
with:
clang-format-version: 19
check-path: ${{ matrix.path }}