Skip to content

Commit

Permalink
chore(deps): bump k8s.io/xxx from 0.24.4 to 0.25.1 and Go 1.19 (#1290)
Browse files Browse the repository at this point in the history
* chore(deps): bump k8s.io/client-go from 0.24.4 to 0.25.0

Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.24.4 to 0.25.0.
- [Release notes](https://github.com/kubernetes/client-go/releases)
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.24.4...v0.25.0)

---
updated-dependencies:
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump k8s.io/client-go from 0.24.4 to 0.25.0 in /test/e2e

Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.24.4 to 0.25.0.
- [Release notes](https://github.com/kubernetes/client-go/releases)
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.24.4...v0.25.0)

---
updated-dependencies:
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump k8s.io/code-generator from 0.24.4 to 0.25.0

Bumps [k8s.io/code-generator](https://github.com/kubernetes/code-generator) from 0.24.4 to 0.25.0.
- [Release notes](https://github.com/kubernetes/code-generator/releases)
- [Commits](kubernetes/code-generator@v0.24.4...v0.25.0)

---
updated-dependencies:
- dependency-name: k8s.io/code-generator
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump go.uber.org/zap from 1.22.0 to 1.23.0

Bumps [go.uber.org/zap](https://github.com/uber-go/zap) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.22.0...v1.23.0)

---
updated-dependencies:
- dependency-name: go.uber.org/zap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump go.uber.org/zap from 1.22.0 to 1.23.0 in /test/e2e

Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>



Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
tao12345666333 and dependabot[bot] authored Sep 22, 2022
1 parent 1f3983e commit 3619b74
Show file tree
Hide file tree
Showing 222 changed files with 428 additions and 390 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/e2e-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3 # v3.0.2

- name: Set up Go 1.18
- name: Setup Go Env
id: go
uses: actions/setup-go@v3 # v3.2.0
with:
go-version: '1.18'
go-version: '1.19'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2 #v2.0.0
Expand Down Expand Up @@ -156,10 +156,14 @@ jobs:
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Go Env
uses: actions/setup-go@v3
with:
go-version: "1.19"

- name: Install ginkgo
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@v2.1.4
go install github.com/onsi/ginkgo/v2/ginkgo@v2.2.0
sudo cp ~/go/bin/ginkgo /usr/local/bin
- name: cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Go Env
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.18'
go-version: '1.19'

- name: Download golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.46.2
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.49.0

- name: 🛩️ golangci-lint
run: $(go env GOPATH)/bin/golangci-lint run --tests=false --timeout 300s ./...
11 changes: 8 additions & 3 deletions .github/workflows/k8s-timer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3 # v3.0.2

- name: Set up Go 1.18
- name: Setup Go Env
id: go
uses: actions/setup-go@v3 # v3.2.0
with:
go-version: '1.18'
go-version: '1.19'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2 #v2.0.0
Expand Down Expand Up @@ -143,9 +143,14 @@ jobs:
with:
submodules: recursive

- name: Setup Go Env
uses: actions/setup-go@v3
with:
go-version: "1.19"

- name: Install ginkgo
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@v2.1.4
go install github.com/onsi/ginkgo/v2/ginkgo@v2.2.0
sudo cp ~/go/bin/ginkgo /usr/local/bin
- name: cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Go Env
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.18'
go-version: '1.19'
- name: run gofmt
working-directory: ./
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Go Env
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: "1.18"
go-version: "1.19"
- name: Run unit test
working-directory: ./
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify-codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Go Env
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: "1.18"
go-version: "1.19"
- name: Make verify-codegen
working-directory: ./
run: |
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
2 changes: 1 addition & 1 deletion cmd/ingress/ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
2 changes: 1 addition & 1 deletion cmd/ingress/ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/apisix-ingress-controller

go 1.18
go 1.19

require (
github.com/gin-gonic/gin v1.8.1
Expand All @@ -15,28 +15,28 @@ require (
github.com/stretchr/testify v1.8.0
github.com/xeipuuv/gojsonschema v1.2.0
go.uber.org/multierr v1.8.0
go.uber.org/zap v1.22.0
go.uber.org/zap v1.23.0
golang.org/x/net v0.0.0-20220725212005-46097bf591d3
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.24.4
k8s.io/apimachinery v0.24.4
k8s.io/client-go v0.24.4
k8s.io/code-generator v0.24.4
k8s.io/api v0.25.1
k8s.io/apimachinery v0.25.1
k8s.io/client-go v0.25.1
k8s.io/code-generator v0.25.1
sigs.k8s.io/gateway-api v0.4.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/swag v0.21.1 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.11.0 // indirect
Expand Down Expand Up @@ -72,20 +72,20 @@ require (
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
golang.org/x/tools v0.1.11 // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/gengo v0.0.0-20220613173612-397b4ae3bce7 // indirect
k8s.io/klog/v2 v2.70.1 // indirect
k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
k8s.io/gengo v0.0.0-20220913193501-391367153a38 // indirect
k8s.io/klog/v2 v2.80.1 // indirect
k8s.io/kube-openapi v0.0.0-20220803164354-a70c9af30aea // indirect
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)
Loading

0 comments on commit 3619b74

Please sign in to comment.