diff options
author | Francis Lavoie <[email protected]> | 2020-08-20 16:04:10 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-20 14:04:10 -0600 |
commit | 0279a57ac465b2920abf71d86203d9feac2015b5 (patch) | |
tree | c3f6743d9eef7adb5c1df562acb1defe0bdd8ba3 /.github | |
parent | c94f5bb7dd3c98d6573c44f06d99c7252911a9fa (diff) | |
download | caddy-0279a57ac465b2920abf71d86203d9feac2015b5.tar.gz caddy-0279a57ac465b2920abf71d86203d9feac2015b5.zip |
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 <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cross-build.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0babe71ff..08575c3f0 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 a935cbaba..49abd7922 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: |