Skip to content

Commit c54cc1d

Browse files
update tests/integration to go 1.19
Signed-off-by: Michael Valdron <[email protected]>
1 parent e2b0944 commit c54cc1d

File tree

3 files changed

+42
-218
lines changed

3 files changed

+42
-218
lines changed

tests/integration/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
FROM golang:1.18-alpine
15+
FROM golang:1.19-alpine
1616

1717
WORKDIR /registry-test
1818

tests/integration/go.mod

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/devfile/registry-support/tests/integration
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
github.com/devfile/library/v2 v2.2.1-0.20230323124903-d36e409ff94f
7-
github.com/devfile/registry-support/index/generator v0.0.0-20221018203505-df96d34d4273
6+
github.com/devfile/library/v2 v2.2.1
7+
github.com/devfile/registry-support/index/generator v0.0.0
88
github.com/onsi/ginkgo v1.16.4
99
github.com/onsi/gomega v1.24.1
1010
)
@@ -18,8 +18,9 @@ require (
1818
github.com/cespare/xxhash/v2 v2.1.2 // indirect
1919
github.com/containerd/containerd v1.5.9 // indirect
2020
github.com/davecgh/go-spew v1.1.1 // indirect
21-
github.com/devfile/api/v2 v2.2.0 // indirect
21+
github.com/devfile/api/v2 v2.2.1 // indirect
2222
github.com/devfile/registry-support/registry-library v0.0.0-20221018213054-47b3ffaeadba // indirect
23+
github.com/distribution/distribution/v3 v3.0.0-20211118083504-a29a3c99a684 // indirect
2324
github.com/docker/cli v20.10.11+incompatible // indirect
2425
github.com/docker/distribution v2.7.1+incompatible // indirect
2526
github.com/docker/docker v20.10.11+incompatible // indirect
@@ -88,13 +89,13 @@ require (
8889
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
8990
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
9091
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
91-
golang.org/x/crypto v0.1.0 // indirect
92-
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
92+
golang.org/x/crypto v0.14.0 // indirect
93+
golang.org/x/net v0.17.0 // indirect
9394
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
94-
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
95-
golang.org/x/sys v0.3.0 // indirect
96-
golang.org/x/term v0.3.0 // indirect
97-
golang.org/x/text v0.5.0 // indirect
95+
golang.org/x/sync v0.1.0 // indirect
96+
golang.org/x/sys v0.13.0 // indirect
97+
golang.org/x/term v0.13.0 // indirect
98+
golang.org/x/text v0.13.0 // indirect
9899
golang.org/x/time v0.3.0 // indirect
99100
google.golang.org/appengine v1.6.7 // indirect
100101
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
@@ -105,10 +106,10 @@ require (
105106
gopkg.in/warnings.v0 v0.1.2 // indirect
106107
gopkg.in/yaml.v2 v2.4.0 // indirect
107108
gopkg.in/yaml.v3 v3.0.1 // indirect
108-
k8s.io/api v0.26.1 // indirect
109-
k8s.io/apiextensions-apiserver v0.26.1 // indirect
110-
k8s.io/apimachinery v0.26.1 // indirect
111-
k8s.io/client-go v0.26.1 // indirect
109+
k8s.io/api v0.26.10 // indirect
110+
k8s.io/apiextensions-apiserver v0.26.10 // indirect
111+
k8s.io/apimachinery v0.26.10 // indirect
112+
k8s.io/client-go v0.26.10 // indirect
112113
k8s.io/klog v1.0.0 // indirect
113114
k8s.io/klog/v2 v2.80.1 // indirect
114115
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
@@ -119,3 +120,5 @@ require (
119120
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
120121
sigs.k8s.io/yaml v1.3.0 // indirect
121122
)
123+
124+
replace github.com/devfile/registry-support/index/generator v0.0.0 => ../../index/generator

0 commit comments

Comments
 (0)