Skip to content

Commit f555ba6

Browse files
authored
Prepare for release v0.7.2 (#138)
1 parent 127e9a8 commit f555ba6

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.1
32+
mszostok/codeowners-validator:v0.7.2
3333
```
3434

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

4848
```yaml
49-
- uses: mszostok/codeowners-validator@v0.7.1
49+
- uses: mszostok/codeowners-validator@v0.7.2
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/main/install.sh | sh -s v0.7.1
73+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.2
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.1
76+
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.7.2
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.1
79+
wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.2
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/codeowners-validator@v0.7.1`.
89+
You can install `codeowners-validator` with `go install github.com/mszostok/codeowners-validator@v0.7.2`.
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
@@ -59,7 +59,7 @@ inputs:
5959

6060
runs:
6161
using: 'docker'
62-
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.1'
62+
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.2'
6363
env:
6464
ENVS_PREFIX: "INPUT"
6565

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.7.1
38+
uses: mszostok/codeowners-validator@v0.7.2
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)