forked from tsuzu/k8soidc
-
Notifications
You must be signed in to change notification settings - Fork 1
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
60ee0a5
commit 2e086e5
Showing
3 changed files
with
13 additions
and
11 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,5 +1,5 @@ | ||
# workspace | ||
FROM golang:1.20 AS workspace | ||
FROM golang:1.21 AS workspace | ||
|
||
COPY . /k8soidc | ||
|
||
|
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 github.com/MISW/k8soidc | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/coreos/go-oidc/v3 v3.6.0 | ||
github.com/gorilla/sessions v1.2.1 | ||
golang.org/x/oauth2 v0.10.0 | ||
golang.org/x/oauth2 v0.11.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gorilla/securecookie v1.1.1 // indirect | ||
golang.org/x/crypto v0.11.0 // indirect | ||
golang.org/x/net v0.12.0 // indirect | ||
golang.org/x/crypto v0.12.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.31.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