Skip to content

Commit c5b9d9c

Browse files
authored
Merge pull request #165 from mittwald/bump/go-and-dependencies
bump go (dependencies), swagger apis
2 parents f3672ea + f743ff8 commit c5b9d9c

File tree

6 files changed

+102
-225
lines changed

6 files changed

+102
-225
lines changed

.github/workflows/codeclimate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
name: Test
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Set up Go 1.19
17+
- name: Set up Go 1.20.1
1818
uses: actions/setup-go@v3
1919
with:
20-
go-version: 1.19
20+
go-version: 1.20.1
2121
id: go
2222

2323
- name: Check out code into the Go module directory

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
harbor: [v1, v2]
16-
go: [1.19]
16+
go: [1.20.1]
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Setup Go

.github/workflows/verify-codegen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
name: Verify
88
runs-on: ubuntu-latest
99
steps:
10-
- name: Set up Go 1.19
10+
- name: Set up Go 1.20.1
1111
uses: actions/setup-go@v3
1212
with:
13-
go-version: '1.19'
13+
go-version: '1.20.1'
1414
id: go
1515

1616
- name: Check out code into the Go module directory

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
harbor-teardown test integration-test-v1-ci integration-test-v2-ci integration-test-v1 integration-test-v2 \
33
fmt gofmt gofumpt goimports lint uninstall-harbor-v2 uninstall-harbor-v1
44

5-
V1_VERSION = v1.10.15
6-
V2_VERSION = v2.7.0
5+
V1_VERSION = v1.10.17
6+
V2_VERSION = v2.7.1
77
MOCKERY_VERSION = v2.14.0
88
GOSWAGGER_VERSION = v0.25.0
99
GOLANGCI_LINT_VERSION = v1.50.1

go.mod

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
module github.com/mittwald/goharbor-client/v5
22

3-
go 1.19
3+
go 1.20
44

55
require (
6-
github.com/go-openapi/errors v0.20.2
7-
github.com/go-openapi/runtime v0.24.1
8-
github.com/go-openapi/strfmt v0.21.2
9-
github.com/go-openapi/swag v0.21.1
10-
github.com/go-openapi/validate v0.21.0
11-
github.com/goharbor/harbor/src v0.0.0-20220518065850-5a4f6c6167cf
6+
github.com/go-openapi/errors v0.20.3
7+
github.com/go-openapi/runtime v0.25.0
8+
github.com/go-openapi/strfmt v0.21.3
9+
github.com/go-openapi/swag v0.22.3
10+
github.com/go-openapi/validate v0.22.1
11+
github.com/goharbor/harbor/src v0.0.0-20230220075213-6015b3efa7d0
1212
github.com/pkg/errors v0.9.1
13-
github.com/stretchr/testify v1.7.1
14-
k8s.io/apimachinery v0.24.0
13+
github.com/stretchr/testify v1.8.2
14+
k8s.io/apimachinery v0.26.2
1515

1616
)
1717

1818
require (
19-
github.com/PuerkitoBio/purell v1.1.1 // indirect
20-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
21-
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
19+
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2220
github.com/davecgh/go-spew v1.1.1 // indirect
23-
github.com/go-logr/logr v1.2.0 // indirect
24-
github.com/go-openapi/analysis v0.21.2 // indirect
25-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
26-
github.com/go-openapi/jsonreference v0.19.6 // indirect
27-
github.com/go-openapi/loads v0.21.1 // indirect
28-
github.com/go-openapi/spec v0.20.4 // indirect
29-
github.com/go-stack/stack v1.8.1 // indirect
21+
github.com/go-logr/logr v1.2.3 // indirect
22+
github.com/go-logr/stdr v1.2.2 // indirect
23+
github.com/go-openapi/analysis v0.21.4 // indirect
24+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
25+
github.com/go-openapi/jsonreference v0.20.2 // indirect
26+
github.com/go-openapi/loads v0.21.2 // indirect
27+
github.com/go-openapi/spec v0.20.8 // indirect
3028
github.com/gogo/protobuf v1.3.2 // indirect
31-
github.com/google/gofuzz v1.1.0 // indirect
29+
github.com/google/gofuzz v1.2.0 // indirect
3230
github.com/josharian/intern v1.0.0 // indirect
3331
github.com/mailru/easyjson v0.7.7 // indirect
34-
github.com/mitchellh/mapstructure v1.4.3 // indirect
32+
github.com/mitchellh/mapstructure v1.5.0 // indirect
3533
github.com/oklog/ulid v1.3.1 // indirect
3634
github.com/opentracing/opentracing-go v1.2.0 // indirect
3735
github.com/pmezard/go-difflib v1.0.0 // indirect
38-
github.com/stretchr/objx v0.2.0 // indirect
39-
go.mongodb.org/mongo-driver v1.8.3 // indirect
40-
golang.org/x/net v0.7.0 // indirect
41-
golang.org/x/text v0.7.0 // indirect
36+
github.com/stretchr/objx v0.5.0 // indirect
37+
go.mongodb.org/mongo-driver v1.11.2 // indirect
38+
go.opentelemetry.io/otel v1.14.0 // indirect
39+
go.opentelemetry.io/otel/trace v1.14.0 // indirect
40+
golang.org/x/sys v0.6.0 // indirect
4241
gopkg.in/yaml.v2 v2.4.0 // indirect
43-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
44-
k8s.io/klog/v2 v2.60.1 // indirect
42+
gopkg.in/yaml.v3 v3.0.1 // indirect
43+
k8s.io/klog/v2 v2.90.1 // indirect
4544
)

0 commit comments

Comments
 (0)