summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2021-02-18 07:09:49 -0500
committerGitHub <noreply@github.com>2021-02-18 07:09:49 -0500
commit5376e5113e25d85725e1f64d06a288700a50bbaa (patch)
tree9bfa0a451fb767830e9a6289981ba52fda5ebd4b
parentec3ac840cf09ec43b9130b41a46c07827b2ff0b6 (diff)
ci: Build and test on Go 1.16, bump minimum to 1.15 (#4024)
* ci: Build and test on Go 1.16 * ci: Drop Go 1.14 support
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/cross-build.yml2
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--README.md2
-rw-r--r--go.mod2
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9540fdd..22e7d7e 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: [ '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
diff --git a/.github/workflows/cross-build.yml b/.github/workflows/cross-build.yml
index f8ae5bb..4da0a25 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: [ '1.14', '1.15' ]
+ go: [ '1.15', '1.16' ]
runs-on: ubuntu-latest
continue-on-error: true
steps:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9273ffb..844b74b 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
- go: [ '1.15' ]
+ go: [ '1.16' ]
runs-on: ${{ matrix.os }}
steps:
diff --git a/README.md b/README.md
index 184525f..620573e 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/go.mod b/go.mod
index 4342a36..4f991e6 100644
--- a/go.mod
+++ b/go.mod
@@ -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