Skip to content

Commit

Permalink
update renovate version matching for elm and client-go
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Yang <ruiya@vmware.com>
  • Loading branch information
Rui Yang committed Mar 15, 2023
1 parent 5c96447 commit e64862f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@
"groupName": "golang",
"groupSlug": "go"
},
{
"matchPackageNames": ["elm"],
"allowedVersions": "/^0\\.([0-9]+)\\.([0-9]+)$/"
},
{
"matchPackageNames": ["k8s.io/client-go"],
"allowedVersions": "!/1\\.(4\\.0|5\\.0|5\\.1|5\\.2)$/"
"allowedVersions": "/^0\\.([0-9]+)\\.([0-9]+)$/"
}
],
"ignoreDeps": ["elm", "client-go"],
"labels": ["dependencies", "misc", "release/undocumented"]
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ and suite runner of choice for Go code. You'll need to install the `ginkgo` CLI
to run the unit tests and `testflight`:

```sh
$ go get github.com/onsi/ginkgo/ginkgo
$ go get github.com/onsi/ginkgo/v2/ginkgo
```

We use [Counterfeiter](https://github.com/maxbrunsfeld/counterfeiter) to generate
Expand Down
2 changes: 1 addition & 1 deletion atc/scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ atc_dir=$(cd $(dirname $0)/.. && pwd)

if not_installed ginkgo; then
echo "# ginkgo is not installed! run the following command:"
echo " go install github.com/onsi/ginkgo/ginkgo"
echo " go install github.com/onsi/ginkgo/v2/ginkgo"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ require (
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.26.2
k8s.io/apimachinery v0.26.2
k8s.io/client-go/v11 v11.0.0+incompatible
k8s.io/client-go v0.26.2
sigs.k8s.io/yaml v1.3.0
)

Expand Down

0 comments on commit e64862f

Please sign in to comment.