diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 7870e5e..a9de1cb 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.16 + go-version: 1.19 - name: Install lint deps run: | go get golang.org/x/lint/golint @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - golang: ["1.17", "1.16"] + golang: ["1.19", "1.18"] steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 diff --git a/Dockerfile b/Dockerfile index 4811623..652eec1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.17 +ARG GO_VERSION=1.19 ARG DEBIAN_VERSION=11 ARG DEBIAN_VERSION_NAME=bullseye diff --git a/go.mod b/go.mod index d422726..871c49e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/matrix-org/rageshake -go 1.16 +go 1.18 require ( github.com/google/go-github v0.0.0-20170401000335-12363ffc1001 @@ -9,3 +9,13 @@ require ( golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288 gopkg.in/yaml.v2 v2.2.8 ) + +require ( + github.com/golang/protobuf v1.2.0 // indirect + github.com/google/go-querystring v1.0.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.1 // indirect + github.com/hashicorp/go-retryablehttp v0.6.8 // indirect + golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect + golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect + google.golang.org/appengine v1.3.0 // indirect +)