summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2020-08-20 16:04:10 -0400
committerGitHub <noreply@github.com>2020-08-20 14:04:10 -0600
commit0279a57ac465b2920abf71d86203d9feac2015b5 (patch)
treec3f6743d9eef7adb5c1df562acb1defe0bdd8ba3 /.github
parentc94f5bb7dd3c98d6573c44f06d99c7252911a9fa (diff)
ci: Upgrade to Go 1.15 (#3642)
* ci: Try Go 1.15 RC1 out of curiosity * Go 1.15 was released; let's try it * Update to latest quic-go * Attempt at fixing broken test Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--.github/workflows/cross-build.yml2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0babe71..08575c3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
- go-version: [ 1.14.x ]
+ go-version: [ 1.14.x, 1.15.x ]
# Set some variables per OS, usable via ${{ matrix.VAR }}
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
@@ -39,7 +39,7 @@ jobs:
steps:
- name: Install Go
- uses: actions/setup-go@v1
+ uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
diff --git a/.github/workflows/cross-build.yml b/.github/workflows/cross-build.yml
index a935cba..49abd79 100644
--- a/.github/workflows/cross-build.yml
+++ b/.github/workflows/cross-build.yml
@@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
goos: ['android', 'linux', 'solaris', 'illumos', 'dragonfly', 'freebsd', 'openbsd', 'plan9', 'windows', 'darwin', 'netbsd']
- go-version: [ 1.14.x ]
+ go-version: [ 1.14.x, 1.15.x ]
runs-on: ubuntu-latest
continue-on-error: true
steps: