We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 712e489 + d79b181 commit ea97dbcCopy full SHA for ea97dbc
.github/workflows/cts_ci.yml
@@ -86,7 +86,7 @@ jobs:
86
87
check-clang-format:
88
if: github.event_name == 'pull_request'
89
- runs-on: "ubuntu-22.04"
+ runs-on: "ubuntu-24.04"
90
steps:
91
- name: Checkout
92
uses: actions/checkout@v3
@@ -95,7 +95,7 @@ jobs:
95
- name: Run clang-format on changed files
96
run: |
97
set -o errexit -o pipefail -o noclobber -o nounset
98
- DIFF=$( git diff -U0 --no-color ${{ github.event.pull_request.base.sha }} | clang-format-diff-14 -p1 )
+ DIFF=$( git diff -U0 --no-color ${{ github.event.pull_request.base.sha }} | clang-format-diff-18 -p1 )
99
if [ ! -z "$DIFF" ]; then
100
echo 'The following changes are not formatted according to `clang-format`:' >> $GITHUB_STEP_SUMMARY
101
echo '```diff' >> $GITHUB_STEP_SUMMARY
0 commit comments