Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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/cpp-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6 # v6.0.0
- uses: cpp-linter/cpp-linter-action@main
id: linter
continue-on-error: true
Expand Down
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@v5
- uses: actions/checkout@v5 # v5.0.1

# ... 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@v5
- uses: actions/checkout@v5 # v5.0.1

# ... 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@v5
- uses: actions/checkout@v5 # v5.0.1

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
re-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6 # v6.0.0
with:
fetch-depth: 0
ref: ${{ inputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6 # v6.0.0

- name: Cache the build artifacts
id: cache-build
Expand Down
Loading