From 543201981d504db8499241d84625b7fc3627b6d6 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Thu, 2 Jul 2026 22:40:48 +0300 Subject: [PATCH] chore: drop clang 11 support and update default version to 21 --- .github/workflows/self-test.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/self-test.yml b/.github/workflows/self-test.yml index 5226810..7e64ded 100644 --- a/.github/workflows/self-test.yml +++ b/.github/workflows/self-test.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] - clang-version: ['11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22'] + clang-version: ['12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22'] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/action.yml b/action.yml index cb8feeb..04a46dd 100644 --- a/action.yml +++ b/action.yml @@ -39,12 +39,12 @@ inputs: version: description: | The desired version of the [clang-tools](https://github.com/cpp-linter/clang-tools-pip) to use. - Accepted options are strings which can be 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12 or 11. + Accepted options are strings which can be 22, 21, 20, 19, 18, 17, 16, 15, 14, 13 or 12. - Set this option to a blank string (`''`) to use the platform's default installed version. - This value can also be a path to where the clang tools are installed (if using a custom install location). required: false - default: '20' + default: '21' verbosity: description: | This controls the action's verbosity in the workflow's logs.