Skip to content

Commit 085f270

Browse files
committed
Adjust docs and GitHub action for v0.5.1 release
1 parent d6bdfac commit 085f270

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ docker run --rm -v $(pwd):/repo -w /repo \
2929
-e GITHUB_ACCESS_TOKEN="$GH_TOKEN" \
3030
-e EXPERIMENTAL_CHECKS="notowned" \
3131
-e OWNER_CHECKER_REPOSITORY="org-name/rep-name" \
32-
mszostok/codeowners-validator:v0.5.0
32+
mszostok/codeowners-validator:v0.5.1
3333
```
3434

3535
#### Command line
@@ -46,7 +46,7 @@ env REPOSITORY_PATH="." \
4646
#### GitHub Action
4747

4848
```yaml
49-
- uses: mszostok/codeowners-validator@v0.5.0
49+
- uses: mszostok/codeowners-validator@v0.5.1
5050
with:
5151
checks: "files,owners,duppatterns"
5252
experimental_checks: "notowned"
@@ -70,13 +70,13 @@ Here is the recommended way to install `codeowners-validator`:
7070

7171
```bash
7272
# binary installed into ./bin/
73-
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.0
73+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.1
7474
7575
# binary installed into $(go env GOPATH)/bin/codeowners-validator
76-
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.5.0
76+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.5.1
7777
7878
# In alpine linux (as it does not come with curl by default)
79-
wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.0
79+
wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.1
8080
8181
# Print version. Add `--short` to print just the version number.
8282
codeowners-validator -v

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ inputs:
4949

5050
runs:
5151
using: 'docker'
52-
image: 'docker://mszostok/codeowners-validator:v0.5.0'
52+
image: 'docker://mszostok/codeowners-validator:v0.5.1'
5353
env:
5454
ENVS_PREFIX: "INPUT"
5555

docs/gh-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Checks-out your repository, which is validated in the next step
3636
- uses: actions/checkout@v2
3737
- name: GitHub CODEOWNERS Validator
38-
uses: mszostok/codeowners-validator@v0.5.0
38+
uses: mszostok/codeowners-validator@v0.5.1
3939
with:
4040
checks: "files,owners,duppatterns"
4141
experimental_checks: "notowned"

0 commit comments

Comments
 (0)