From e10f2546b095aa678cd643075bb46c656a298e1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 09:17:36 +0000 Subject: [PATCH 1/4] chore(deps): bump clang-tools from 0.15.2 to 0.15.3 in the pip group Bumps the pip group with 1 update: [clang-tools](https://github.com/cpp-linter/clang-tools-pip). Updates `clang-tools` from 0.15.2 to 0.15.3 - [Release notes](https://github.com/cpp-linter/clang-tools-pip/releases) - [Commits](https://github.com/cpp-linter/clang-tools-pip/compare/v0.15.2...v0.15.3) --- updated-dependencies: - dependency-name: clang-tools dependency-version: 0.15.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- uv.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index efcf4c8f..a325f4d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ dependencies = [] [dependency-groups] action = [ - "clang-tools==0.15.2", + "clang-tools==0.15.3", "cpp-linter==1.10.7", ] dev = [ diff --git a/uv.lock b/uv.lock index 3bd1d3e2..56691bfd 100644 --- a/uv.lock +++ b/uv.lock @@ -202,10 +202,10 @@ wheels = [ [[package]] name = "clang-tools" -version = "0.15.2" +version = "0.15.3" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/fd/e35a00d0bbb31a7d9933927b0246a871c0737200d9864c1c11102eb11a17/clang_tools-0.15.2-py3-none-any.whl", hash = "sha256:d6299d8b0564e89b01caaab0bcb58d56b989712657fc2aad6fa36c4e47e0fdbc", size = 11013, upload-time = "2025-08-15T22:44:54.695Z" }, + { url = "https://files.pythonhosted.org/packages/e9/dc/2a67ca33fafbd50f7b33be4c0221cc9e3f2fb08f04554cdc03c76c6acd1b/clang_tools-0.15.3-py3-none-any.whl", hash = "sha256:9164007e5c503b6044f759916711d5eb50bac9499c0f0378dd139f5ed023a5b4", size = 11060, upload-time = "2025-08-31T18:08:56.623Z" }, ] [[package]] @@ -289,7 +289,7 @@ docs = [ [package.metadata.requires-dev] action = [ - { name = "clang-tools", specifier = "==0.15.2" }, + { name = "clang-tools", specifier = "==0.15.3" }, { name = "cpp-linter", specifier = "==1.10.7" }, ] dev = [ From 4791756bb82aceea7774d505d635f300b90a106d Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 2 Sep 2025 12:44:02 +0300 Subject: [PATCH 2/4] chore: update support version and change default version to 18 Ref to f91c446a32ae3eb9f98fef8c9ed4c7cb613a4f8a, also bump default version. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 667223d0..3652dc17 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 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, or 8. + Accepted options are strings which can be 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10 or 9. - 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: 16 + default: 18 verbosity: description: | This controls the action's verbosity in the workflow's logs. From 20ed93c109aba41bec4e8c054b761190cfa29e29 Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 2 Sep 2025 12:45:23 +0300 Subject: [PATCH 3/4] Update clang version matrix in self-test workflow --- .github/workflows/self-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/self-test.yml b/.github/workflows/self-test.yml index 5de96554..f8c10783 100644 --- a/.github/workflows/self-test.yml +++ b/.github/workflows/self-test.yml @@ -31,7 +31,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] - clang-version: ['8','9','10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20'] + clang-version: ['9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21'] fail-fast: false runs-on: ${{ matrix.os }} steps: From d28b897223cf176d6902f4a154a89811ab3411ae Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Tue, 2 Sep 2025 03:42:54 -0700 Subject: [PATCH 4/4] do `brew update` before `brew install` --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 3652dc17..87944651 100644 --- a/action.yml +++ b/action.yml @@ -323,6 +323,7 @@ runs: if: runner.os == 'macOS' shell: nu {0} run: |- + ^brew update let brew_install_arg = 'llvm@${{ inputs.version }}' let result = (^brew install $brew_install_arg) | complete print $result