diff --git a/scripts/build_funcs.sh b/scripts/build_funcs.sh index 323d89af8..819e1c245 100755 --- a/scripts/build_funcs.sh +++ b/scripts/build_funcs.sh @@ -28,7 +28,7 @@ IMAGE_BRANCH=$(git rev-parse --abbrev-ref HEAD | sed 's/\///g') GIT_REF_LONG=$(git rev-parse --verify HEAD) BUILDMNT=/go/src/$GOTARGET -BUILD_IMAGE=golang:1.21.4 +BUILD_IMAGE=golang:1.21.11 AMD_IMAGE=gcr.io/distroless/static:nonroot ARM_IMAGE=gcr.io/distroless/static:nonroot-arm64 PPC64LE_IMAGE=gcr.io/distroless/static:nonroot-ppc64le diff --git a/test/integration/testImage/Dockerfile b/test/integration/testImage/Dockerfile index 511fab6e9..699598b84 100644 --- a/test/integration/testImage/Dockerfile +++ b/test/integration/testImage/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.4 AS base +FROM golang:1.21.11 AS base WORKDIR /src # Handle the go modules first to take advantage of Docker cache.