Skip to content

Commit 4e0aa9d

Browse files
authored
Prepare for release v0.7.3 (#144)
1 parent 2ae5a4b commit 4e0aa9d

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

6464
runs:
6565
using: 'docker'
66-
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.2'
66+
image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.3'
6767
env:
6868
ENVS_PREFIX: "INPUT"
6969

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