Skip to content

Commit

Permalink
Do not update k8s API version
Browse files Browse the repository at this point in the history
Signed-off-by: uzair <[email protected]>
  • Loading branch information
uzaxirr committed Mar 12, 2024
1 parent 08d2511 commit 49a3f1a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 183 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.20.x]
go-version: [1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
19 changes: 18 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/civo/civogo

go 1.16
go 1.20

require (
github.com/google/go-querystring v1.1.0
Expand All @@ -9,4 +9,21 @@ require (
k8s.io/apimachinery v0.27.1
)

require (
github.com/go-logr/logr v1.2.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.90.1 // indirect
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
)

replace github.com/onsi/gomega => github.com/onsi/gomega v1.19.0
Loading

0 comments on commit 49a3f1a

Please sign in to comment.