generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f3d108
commit 3043b38
Showing
4 changed files
with
33 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.17 as build | ||
FROM golang:1.20 as build | ||
|
||
WORKDIR /go/src/verify | ||
COPY verify verify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
module sigs.k8s.io/kubebuilder-release-tools/verify | ||
|
||
go 1.17 | ||
go 1.20 | ||
|
||
replace sigs.k8s.io/kubebuilder-release-tools/notes => ../notes | ||
|
||
require ( | ||
github.com/google/go-github/v32 v32.1.0 | ||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be | ||
sigs.k8s.io/kubebuilder-release-tools/notes v0.0.0-00010101000000-000000000000 | ||
golang.org/x/oauth2 v0.8.0 | ||
sigs.k8s.io/kubebuilder-release-tools/notes v0.3.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073 // indirect | ||
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 // indirect | ||
google.golang.org/appengine v1.1.0 // indirect | ||
google.golang.org/protobuf v1.23.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters