Skip to content

Commit

Permalink
ci: Build and test on Go 1.16, bump minimum to 1.15 (#4024)
Browse files Browse the repository at this point in the history
* ci: Build and test on Go 1.16

* ci: Drop Go 1.14 support
  • Loading branch information
francislavoie authored Feb 18, 2021
1 parent ec3ac84 commit 5376e51
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ '1.14', '1.15' ]
go: [ '1.15', '1.16' ]

# Set some variables per OS, usable via ${{ matrix.VAR }}
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
goos: ['android', 'linux', 'solaris', 'illumos', 'dragonfly', 'freebsd', 'openbsd', 'plan9', 'windows', 'darwin', 'netbsd']
go: [ '1.14', '1.15' ]
go: [ '1.15', '1.16' ]
runs-on: ubuntu-latest
continue-on-error: true
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
go: [ '1.15' ]
go: [ '1.16' ]
runs-on: ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ For other install options, see https://caddyserver.com/docs/download.

Requirements:

- [Go 1.14 or newer](https://golang.org/dl/)
- [Go 1.15 or newer](https://golang.org/dl/)

### For development

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/caddyserver/caddy/v2

go 1.14
go 1.15

require (
github.com/Masterminds/sprig/v3 v3.1.0
Expand Down

0 comments on commit 5376e51

Please sign in to comment.