Skip to content

Commit 696fc4e

Browse files
authored
Enable testing on go1.14.5 (letsencrypt#4953)
New go version 1.14.5 was released today: https://groups.google.com/g/golang-announce/c/XZNfaiwgt2w/m/E6gHDs32AQAJ It includes a security fix for X.509 verification (CVE-2020-14039, https://golang.org/issue/39360).
1 parent 24e782e commit 696fc4e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ os: linux
44

55
go:
66
- "1.14.1"
7+
- "1.14.5"
78

89
go_import_path: github.com/letsencrypt/boulder
910

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
boulder:
44
# To minimize fetching this should be the same version used below
5-
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.1}:2020-06-01
5+
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-07-14
66
environment:
77
- FAKE_DNS=10.77.77.77
88
- BOULDER_CONFIG_DIR=test/config
@@ -83,7 +83,7 @@ services:
8383
logging:
8484
driver: none
8585
netaccess:
86-
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.1}:2020-06-01
86+
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-07-14
8787
environment:
8888
GO111MODULE: "on"
8989
GOFLAGS: "-mod=vendor"

test/boulder-tools/tag_and_upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd $(dirname $0)
44

55
DATESTAMP=$(date +%Y-%m-%d)
66
BASE_TAG_NAME="letsencrypt/boulder-tools"
7-
GO_VERSIONS=( "1.14.1" )
7+
GO_VERSIONS=( "1.14.1" "1.14.5" )
88

99
# Build a tagged image for each GO_VERSION
1010
for GO_VERSION in "${GO_VERSIONS[@]}"

0 commit comments

Comments
 (0)