diff --git a/README.md b/README.md index 0eeb170..66455ab 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ docker run --rm -v $(pwd):/repo -w /repo \ -e GITHUB_ACCESS_TOKEN="$GH_TOKEN" \ -e EXPERIMENTAL_CHECKS="notowned" \ -e OWNER_CHECKER_REPOSITORY="org-name/rep-name" \ - mszostok/codeowners-validator:v0.5.1 + mszostok/codeowners-validator:v0.6.0 ``` #### Command line @@ -48,7 +48,7 @@ env REPOSITORY_PATH="." \ #### GitHub Action ```yaml -- uses: mszostok/codeowners-validator@v0.5.1 +- uses: mszostok/codeowners-validator@v0.6.0 with: checks: "files,owners,duppatterns" experimental_checks: "notowned" @@ -72,13 +72,13 @@ Here is the recommended way to install `codeowners-validator`: ```bash # binary installed into ./bin/ -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.1 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.6.0 # binary installed into $(go env GOPATH)/bin/codeowners-validator -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.5.1 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.6.0 # In alpine linux (as it does not come with curl by default) -wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.5.1 +wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.6.0 # Print version. Add `--short` to print just the version number. codeowners-validator -v diff --git a/action.yml b/action.yml index 3d5f012..3d04fc8 100644 --- a/action.yml +++ b/action.yml @@ -49,7 +49,7 @@ inputs: runs: using: 'docker' - image: 'docker://mszostok/codeowners-validator:v0.5.1' + image: 'docker://mszostok/codeowners-validator:v0.6.0' env: ENVS_PREFIX: "INPUT" diff --git a/docs/gh-action.md b/docs/gh-action.md index a6a70a0..e31da93 100644 --- a/docs/gh-action.md +++ b/docs/gh-action.md @@ -35,7 +35,7 @@ jobs: # Checks-out your repository, which is validated in the next step - uses: actions/checkout@v2 - name: GitHub CODEOWNERS Validator - uses: mszostok/codeowners-validator@v0.5.1 + uses: mszostok/codeowners-validator@v0.6.0 with: checks: "files,owners,duppatterns" experimental_checks: "notowned"