Skip to content

Commit

Permalink
Bump versions of actions in README
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedThree committed Nov 6, 2023
1 parent 246fe91 commit 828c9a4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Optionally generate compile_commands.json

- uses: ZedThree/clang-tidy-review@v0.12.0
- uses: ZedThree/clang-tidy-review@v0.14.0
id: review

# Uploads an artefact containing clang_fixes.json
- uses: ZedThree/clang-tidy-review/upload@v0.12.0
- uses: ZedThree/clang-tidy-review/upload@v0.14.0
id: upload-review

# If there are any comments, fail the check
Expand Down Expand Up @@ -143,9 +143,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ZedThree/clang-tidy-review@v0.12.0
- uses: ZedThree/clang-tidy-review@v0.14.0
id: review
with:
# List of packages to install
Expand Down Expand Up @@ -191,14 +191,14 @@ jobs:
image: my-container
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Get the current working directory and set it
# as an environment variable
- name: Set base_dir
run: echo "base_dir=$(pwd)" >> $GITHUB_ENV
- uses: ZedThree/clang-tidy-review@v0.12.0
- uses: ZedThree/clang-tidy-review@v0.14.0
id: review
with:
# Tell clang-tidy-review the base directory.
Expand All @@ -225,15 +225,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Optionally generate compile_commands.json
- uses: ZedThree/clang-tidy-review@v0.12.0
- uses: ZedThree/clang-tidy-review@v0.14.0
with:
split_workflow: true
- uses: ZedThree/clang-tidy-review/upload@v0.12.0
- uses: ZedThree/clang-tidy-review/upload@v0.14.0
```
The `clang-tidy-review/upload` Action will automatically upload the following
files as workflow artefacts:
Expand All @@ -259,7 +259,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: ZedThree/clang-tidy-review/post@v0.12.0
- uses: ZedThree/clang-tidy-review/post@v0.14.0
# lgtm_comment_body, max_comments, and annotations need to be set on the posting workflow in a split setup
with:
# adjust options as necessary
Expand Down

0 comments on commit 828c9a4

Please sign in to comment.