Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/examples/only-PR-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions: # (1)!
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples/only-clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples/only-clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The content of the file should be in the following format.

```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
Expand Down
Loading