Skip to content

Commit

Permalink
docs: update readme examples to use version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmcodes committed Apr 9, 2024
1 parent 069fa3b commit 5a10877
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add the following to your GitHub action workflow to use StandardRB Linter Action
```yaml
- name: StandardRB Linter
uses: andrewmcodes/standardrb-action@v1.0.0
uses: andrewmcodes/standardrb-action@v2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -46,9 +46,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: StandardRB Linter
uses: andrewmcodes/standardrb-action@v1.0.0
uses: andrewmcodes/standardrb-action@v2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -57,6 +57,8 @@ jobs:
Due to the GitHub Check Runs API, we can only return 50 annotations per run. See [here](https://developer.github.com/v3/checks/runs/#output-object) for more info.
This is not an issue if you remove this action from your workflow and replace with `bundle exec standardrb --format github --parallel` as mentioned in the caution above.

## :camera_flash: Screenshots

![StandardRB Action Checks Overview](screenshots/check-overview.png)
Expand Down

0 comments on commit 5a10877

Please sign in to comment.