File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 36
36
matrix :
37
37
# Add additional docker image tags here and all tests will be run with the additional image.
38
38
BOULDER_TOOLS_TAG :
39
- - go1.20.5_2023-06-20
40
- - go1.21rc2_2023-06-21
39
+ - go1.20.6_2023-07-11
40
+ - go1.21rc2_2023-07-11
41
41
# Tests command definitions. Use the entire "docker compose" command you want to run.
42
42
tests :
43
43
# Run ./test.sh --help for a description of each of the flags.
@@ -113,8 +113,8 @@ jobs:
113
113
matrix :
114
114
# Add additional docker image tags here and all tests will be run with the additional image.
115
115
BOULDER_TOOLS_TAG :
116
- - go1.20.5_2023-06-20
117
- - go1.21rc2_2023-06-21
116
+ - go1.20.6_2023-07-11
117
+ - go1.21rc2_2023-07-11
118
118
119
119
env :
120
120
# This sets the docker image tag for the boulder-tools repository to
Original file line number Diff line number Diff line change 15
15
fail-fast : false
16
16
matrix :
17
17
GO_VERSION :
18
- - " 1.20.5 "
18
+ - " 1.20.6 "
19
19
- " 1.21rc2"
20
20
runs-on : ubuntu-20.04
21
21
permissions :
Original file line number Diff line number Diff line change 15
15
fail-fast : false
16
16
matrix :
17
17
GO_VERSION :
18
- - " 1.20.5 "
18
+ - " 1.20.6 "
19
19
- " 1.21rc2"
20
20
runs-on : ubuntu-20.04
21
21
steps :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3'
2
2
services :
3
3
boulder :
4
4
# Should match one of the GO_DEV_VERSIONS in test/boulder-tools/tag_and_upload.sh.
5
- image : &boulder_image letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.20.5_2023-06-20 }
5
+ image : &boulder_image letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.20.5_2023-07-11 }
6
6
environment :
7
7
# To solve HTTP-01 and TLS-ALPN-01 challenges, change the IP in FAKE_DNS
8
8
# to the IP address where your ACME client's solver is listening.
Original file line number Diff line number Diff line change @@ -2063,7 +2063,7 @@ func TestNewOrderReuse(t *testing.T) {
2063
2063
t .Run (tc .Name , func (t * testing.T ) {
2064
2064
// If the testcase specifies, advance the clock before adding the order
2065
2065
if tc .AdvanceClock != nil {
2066
- fc .Now ().Add (* tc .AdvanceClock )
2066
+ _ = fc .Now ().Add (* tc .AdvanceClock )
2067
2067
}
2068
2068
// Add the order for the test request
2069
2069
order , err := ra .NewOrder (ctx , tc .OrderReq )
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ DOCKER_REPO="letsencrypt/boulder-tools"
12
12
# .github/workflows/release.yml,
13
13
# .github/workflows/try-release.yml if appropriate,
14
14
# and .github/workflows/boulder-ci.yml with the new container tag.
15
- GO_CI_VERSIONS=( " 1.20.5 " " 1.21rc2" )
15
+ GO_CI_VERSIONS=( " 1.20.6 " " 1.21rc2" )
16
16
# These versions are built for both platforms that boulder devs use.
17
17
# When updating GO_DEV_VERSIONS, please also update
18
18
# ../../docker-compose.yml's default Go version.
19
- GO_DEV_VERSIONS=( " 1.20.5 " )
19
+ GO_DEV_VERSIONS=( " 1.20.6 " )
20
20
21
21
echo " Please login to allow push to DockerHub"
22
22
docker login
You can’t perform that action at this time.
0 commit comments