Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cpp-linter from 1.8.1 to 1.9.1 in the pip group across 1 directory #240

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,20 @@ inputs:
- Prefix a path with a bang (`!`) to make it explicitly _not_ ignored. The order of
multiple paths does _not_ take precedence. The `!` prefix can be applied to
a submodule's path (if desired) but not hidden directories.
- Glob patterns are not supported here. All asterisk characters (`*`) are literal.
- **As of v2.12**, glob patterns are supported here.
All asterisk characters (`*`) were previously literal.
required: false
default: '.github'
ignore-tidy:
description: |-
Use this option to allow clang-tidy to ignore certain paths/files.
See [`ignore`](#ignore) for more details on possible values.
required: false
default: '.github'
ignore-format:
description: |-
Use this option to allow clang-format to ignore certain paths/files.
See [`ignore`](#ignore) for more details on possible values.
required: false
default: '.github'
thread-comments:
Expand Down Expand Up @@ -263,6 +276,8 @@ runs:
--no-lgtm=${{ inputs.no-lgtm }} \
--step-summary=${{ inputs.step-summary }} \
--ignore="${{ inputs.ignore }}" \
--ignore-tidy="${{ inputs.ignore-tidy }}" \
--ignore-format="${{ inputs.ignore-format }}" \
--database=${{ inputs.database }} \
--file-annotations=${{ inputs.file-annotations }} \
--extra-arg="${{ inputs.extra-args }}" \
Expand Down Expand Up @@ -299,6 +314,8 @@ runs:
' --no-lgtm=${{ inputs.no-lgtm }}' +
' --step-summary=${{ inputs.step-summary }}' +
' --ignore="${{ inputs.ignore }}"' +
' --ignore-tidy="${{ inputs.ignore-tidy }}"' +
' --ignore-format="${{ inputs.ignore-format }}"' +
' --database=${{ inputs.database }}' +
' --file-annotations=${{ inputs.file-annotations }}' +
' --extra-arg="${{ inputs.extra-args }}"' +
Expand Down
4 changes: 4 additions & 0 deletions docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ inputs:
required-permission: 'contents: read #file-changes'
ignore:
minimum-version: '1.3.0'
ignore-tidy:
minimum-version: '2.12.0'
ignore-format:
minimum-version: '2.12.0'
thread-comments:
minimum-version: '2.6.2'
required-permission: 'contents: write #thread-comments'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ clang-tools==0.12.1

# cpp-linter core Python executable package
# For details please see: https://github.com/cpp-linter/cpp-linter
cpp-linter==1.8.1
cpp-linter==1.9.1
Loading