From 4601801ea8dab70a3f0d1b00d9cefe74aa4987fb Mon Sep 17 00:00:00 2001 From: Mateusz Szostok Date: Wed, 6 Apr 2022 20:19:00 +0200 Subject: [PATCH] Prepare for release v0.7.2 --- README.md | 12 ++++++------ action.yml | 2 +- docs/gh-action.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 52b8356..0653666 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,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.7.1 + mszostok/codeowners-validator:v0.7.2 ``` #### Command line @@ -46,7 +46,7 @@ env REPOSITORY_PATH="." \ #### GitHub Action ```yaml -- uses: mszostok/codeowners-validator@v0.7.1 +- uses: mszostok/codeowners-validator@v0.7.2 with: checks: "files,owners,duppatterns" experimental_checks: "notowned" @@ -70,13 +70,13 @@ Here is the recommended way to install `codeowners-validator`: ```bash # binary installed into ./bin/ -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.1 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.2 # binary installed into $(go env GOPATH)/bin/codeowners-validator -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.7.1 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.7.2 # In alpine linux (as it does not come with curl by default) -wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.1 +wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s v0.7.2 # Print version. Add `--short` to print just the version number. codeowners-validator -v @@ -86,7 +86,7 @@ You can also download [latest version](https://github.com/mszostok/codeowners-va #### From Sources -You can install `codeowners-validator` with `go install github.com/mszostok/codeowners-validator@v0.7.1`. +You can install `codeowners-validator` with `go install github.com/mszostok/codeowners-validator@v0.7.2`. > NOTE: please use Go 1.16 or greater. diff --git a/action.yml b/action.yml index da4ec50..b08de56 100644 --- a/action.yml +++ b/action.yml @@ -59,7 +59,7 @@ inputs: runs: using: 'docker' - image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.1' + image: 'docker://ghcr.io/mszostok/codeowners-validator:v0.7.2' env: ENVS_PREFIX: "INPUT" diff --git a/docs/gh-action.md b/docs/gh-action.md index 9555519..2838f2f 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.7.1 + uses: mszostok/codeowners-validator@v0.7.2 # input parameters with: # "The list of checks that will be executed. By default, all checks are executed. Possible values: files,owners,duppatterns,syntax"