From 277669ee6718129af6a538887e73263c7fbc88c6 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 14 Jan 2022 12:16:05 +0400 Subject: [PATCH] update Go versions on GitHub Actions --- .github/workflows/test.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a19877f..120e199 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: unit: strategy: matrix: - go: [ "1.14", "1.15" ] + go: [ "1.16.x", "1.17.x" ] runs-on: ubuntu-latest name: Unit tests (Go ${{ matrix.go }}) steps: @@ -36,7 +36,7 @@ jobs: integration: strategy: matrix: - go: [ "1.14", "1.15" ] + go: [ "1.16.x", "1.17.x" ] runs-on: ubuntu-latest name: Integration tests (Go ${{ matrix.go }}) steps: diff --git a/go.mod b/go.mod index 9f5e48f..3771c49 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/marten-seemann/qpack -go 1.14 +go 1.16 require ( github.com/onsi/ginkgo v1.14.0