diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c82c0fc..0678fcf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - run: pip install pre-commit-mirror-maker - run: git config --global user.name 'Github Actions' - run: git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' - - run: pre-commit-mirror . --language=python --package-name=clang-format --id=clang-format --entry='clang-format -i' --types-or c++ --types-or c --types-or 'c#' --types-or 'cuda' --types-or 'java' --types-or 'javascript' --types-or 'json' --types-or 'objective-c' --types-or 'proto' --args=-style=file + - run: pre-commit-mirror . --language=python --package-name=clang-format --id=clang-format --entry='clang-format -i' --types-or c++ --types-or c --types-or 'c#' --types-or 'cuda' --types-or 'java' --types-or 'javascript' --types-or 'json' --types-or 'objective-c' --types-or 'proto' --types-or 'textproto' --args=-style=file - run: | git remote set-url origin https://x-access-token:$GH_TOKEN@github.com/$GITHUB_REPOSITORY git push origin HEAD:refs/heads/main --tags diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 11eb533..47f54fc 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -3,7 +3,7 @@ description: '' entry: clang-format -i language: python - 'types_or': [c++, c, c#, cuda, java, javascript, json, objective-c, proto] + 'types_or': [c++, c, c#, cuda, java, javascript, json, objective-c, proto, textproto] args: ["-style=file"] require_serial: false additional_dependencies: [] diff --git a/.version b/.version index 244901b..a6e3fce 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -15.0.6 +16.0.6 diff --git a/setup.py b/setup.py index e58e60e..f1eba84 100644 --- a/setup.py +++ b/setup.py @@ -6,5 +6,5 @@ setup( name='pre_commit_placeholder_package', version='0.0.0', - install_requires=['clang-format==15.0.6'], + install_requires=['clang-format==16.0.6'], )