Update CI to go1.24.4 (#8232)
Go 1.24.4 is a security release containing fixes to net/http, os.OpenFile, and x509.Certificate.Verify, all of which we use. We appear to be unaffected by the specific vulnerabilities described, however. See the announcement here: https://groups.google.com/g/golang-announce/c/ufZ8WpEsA3A
This commit is contained in:
parent
426482781c
commit
d4e706eeb8
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
matrix:
|
||||
# Add additional docker image tags here and all tests will be run with the additional image.
|
||||
BOULDER_TOOLS_TAG:
|
||||
- go1.24.1_2025-06-03
|
||||
- go1.24.4_2025-06-06
|
||||
# Tests command definitions. Use the entire "docker compose" command you want to run.
|
||||
tests:
|
||||
# Run ./test.sh --help for a description of each of the flags.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
GO_VERSION:
|
||||
- "1.24.1"
|
||||
- "1.24.4"
|
||||
runs-on: ubuntu-24.04
|
||||
permissions:
|
||||
contents: write
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
GO_VERSION:
|
||||
- "1.24.1"
|
||||
- "1.24.4"
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ DOCKER_REPO="letsencrypt/boulder-tools"
|
|||
# .github/workflows/release.yml,
|
||||
# .github/workflows/try-release.yml if appropriate,
|
||||
# and .github/workflows/boulder-ci.yml with the new container tag.
|
||||
GO_CI_VERSIONS=( "1.24.1" )
|
||||
GO_CI_VERSIONS=( "1.24.4" )
|
||||
|
||||
echo "Please login to allow push to DockerHub"
|
||||
docker login
|
||||
|
|
|
|||
Loading…
Reference in New Issue