Skip to content

Commit 7f3f5e2

Browse files
authored
Adjust docs and GitHub action for v0.7.4 release (#154)
1 parent cfa4033 commit 7f3f5e2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 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.7.3
32+
mszostok/codeowners-validator:v0.7.4
3333
```
3434

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

4848
```yaml
49-
- uses: mszostok/[email protected].3
49+
- uses: mszostok/[email protected].4
5050
with:
5151
checks: "files,owners,duppatterns,syntax"
5252
experimental_checks: "notowned,avoid-shadowing"
@@ -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/main/install.sh | sh -s v0.7.3
73+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.4
7474
7575
# binary installed into $(go env GOPATH)/bin/codeowners-validator
76-
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.7.3
76+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.7.4
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/main/install.sh | sh -s v0.7.3
79+
wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.4
8080
8181
# Print version. Add `--short` to print just the version number.
8282
codeowners-validator -v
@@ -86,7 +86,7 @@ You can also download [latest version](https://github.com/mszostok/codeowners-va
8686

8787
#### From Sources
8888

89-
You can install `codeowners-validator` with `go install github.com/mszostok/[email protected].3`.
89+
You can install `codeowners-validator` with `go install github.com/mszostok/[email protected].4`.
9090

9191
> NOTE: please use Go 1.16 or greater.
9292

action.yml

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

6969
runs:
7070
using: 'docker'
71-
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.3'
71+
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.4'
7272
env:
7373
ENVS_PREFIX: "INPUT"
7474

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/[email protected].3
38+
uses: mszostok/[email protected].4
3939
# input parameters
4040
with:
4141
# "The list of checks that will be executed. By default, all checks are executed. Possible values: files,owners,duppatterns,syntax"

0 commit comments

Comments
 (0)