Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Update controller runtime package #113

Merged
merged 5 commits into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.13.4
- name: Set up Go 1.15.6
uses: actions/setup-go@v2
with:
go-version: 1.13.4
go-version: 1.15.6
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
Expand All @@ -22,19 +22,18 @@ jobs:
run: |
go install github.com/onsi/ginkgo/ginkgo
go get -u golang.org/x/lint/golint
curl -LO https://github.com/dominikh/go-tools/releases/download/2020.1.3/staticcheck_linux_amd64.tar.gz
sudo tar xfz staticcheck_linux_amd64.tar.gz --strip-component 1 -C $GOPATH/bin staticcheck/staticcheck
go get honnef.co/go/tools/cmd/staticcheck
- name: Run lint
run: bin/lint

unit-tests:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.13.4
- name: Set up Go 1.15.6
uses: actions/setup-go@v2
with:
go-version: 1.13.4
go-version: 1.15.6
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion bin/gen-utils-fakes
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ set -e

[ ! -d "vendor" ] && echo "$0 requires vendor/ folder, run 'go mod vendor'"

counterfeiter -o pkg/credsgen/fakes/generator.go pkg/credsgen/ Generator
counterfeiter -o pkg/credsgen/fakes/generator.go pkg/credsgen/ Generator
counterfeiter -o pkg/fakes/client.go vendor/sigs.k8s.io/controller-runtime/pkg/client Client
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ go 1.15
require (
github.com/cloudflare/cfssl v1.4.1
github.com/dchest/uniuri v0.0.0-20200228104902-7aecb25e1fe5
github.com/go-logr/zapr v0.1.1
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1
github.com/pkg/errors v0.8.1
github.com/go-logr/zapr v0.2.0
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/pkg/errors v0.9.1
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.7
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.1
go.uber.org/zap v1.13.0
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
github.com/spf13/viper v1.7.0
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.18.9
k8s.io/apiextensions-apiserver v0.18.9
k8s.io/apimachinery v0.18.9
k8s.io/client-go v0.18.9
k8s.io/code-generator v0.18.9
sigs.k8s.io/controller-runtime v0.6.3
k8s.io/api v0.20.2
k8s.io/apiextensions-apiserver v0.20.1
k8s.io/apimachinery v0.20.2
k8s.io/client-go v0.20.2
k8s.io/code-generator v0.20.1
sigs.k8s.io/controller-runtime v0.8.2
)
523 changes: 350 additions & 173 deletions go.sum

Large diffs are not rendered by default.

Loading