diff --git a/README.md b/README.md index 4f8c1301..62388954 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ jobs: #### `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 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4 or 3.9. +- **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 17, 16, 15, 14, 13, 12, 11, 10, 9, 8 or 7. - 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). - Default: '12' diff --git a/action.yml b/action.yml index f7568851..700e1d2b 100644 --- a/action.yml +++ b/action.yml @@ -58,7 +58,7 @@ inputs: required: false default: "." version: - description: "The desired version of the clang tools to use. Accepted options are strings which can be 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4 or 3.9. Defaults to 12." + description: "The desired version of the clang tools to use. Accepted options are strings which can be 17, 16, 15, 14, 13, 12, 11, 10, 9, 8 or 7. Defaults to 12." required: false default: "12" verbosity: diff --git a/requirements.txt b/requirements.txt index 0ae57381..612c5415 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # Install clang-tools binaries (clang-format, clang-tidy) # For details please see: https://github.com/cpp-linter/clang-tools-pip -clang-tools==0.9.0 +clang-tools==0.10.0 # cpp-linter core Python executable package # For details please see: https://github.com/cpp-linter/cpp-linter