Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .github/workflows/cpp-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
# v6.0.0
- uses: actions/checkout@v6
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot please add comments after - uses: actions/checkout@v6, for example - uses: actions/checkout@v6 # v6.0.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in ce0a7c7. Changed all version comments to inline format:

- uses: actions/checkout@v6  # v6.0.0

- uses: cpp-linter/cpp-linter-action@main
id: linter
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/examples/only-PR-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
permissions: # (1)!
pull-requests: write
steps:
# v5.0.1
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/examples/only-clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
# v5.0.1
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/examples/only-clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
# v5.0.1
- uses: actions/checkout@v5

# ... optionally setup build env to create a compilation database
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
re-tag:
runs-on: ubuntu-latest
steps:
# v6.0.0
- uses: actions/checkout@v6
with:
fetch-depth: 0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
# v6.0.0
uses: actions/checkout@v6

- name: Cache the build artifacts
Expand Down