Upgrade depedencies and go version

This commit is contained in:
Bolke de Bruin 2021-05-18 11:32:38 +02:00
parent bc6df00305
commit e5e888ec7c
2 changed files with 7 additions and 7 deletions

View file

@ -16,7 +16,7 @@ jobs:
- name: Set up Go 1.x - name: Set up Go 1.x
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: ^1.14 go-version: ^1.16
id: go id: go
- name: Check out code into the Go module directory - name: Check out code into the Go module directory

12
go.mod
View file

@ -1,15 +1,15 @@
module github.com/bolkedebruin/rdpgw module github.com/bolkedebruin/rdpgw
go 1.14 go 1.16
require ( require (
github.com/coreos/go-oidc/v3 v3.0.0-alpha.1 github.com/coreos/go-oidc/v3 v3.0.0
github.com/gorilla/sessions v1.2.0 github.com/gorilla/sessions v1.2.1
github.com/gorilla/websocket v1.4.2 github.com/gorilla/websocket v1.4.2
github.com/patrickmn/go-cache v2.1.0+incompatible github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/prometheus/client_golang v1.7.1 github.com/prometheus/client_golang v1.10.0
github.com/spf13/cobra v1.0.0 github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.7.0 github.com/spf13/viper v1.7.1
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
) )