├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── oidc_gateway.go └── oidc_gateway_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @steiza 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/go.sum -------------------------------------------------------------------------------- /oidc_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/oidc_gateway.go -------------------------------------------------------------------------------- /oidc_gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/actions-oidc-gateway-example/HEAD/oidc_gateway_test.go --------------------------------------------------------------------------------