diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 77ff23df..9b473f2a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,7 +37,7 @@ jobs: - name: "Setup Go" uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - name: "Run Tests" run: | diff --git a/Dockerfile b/Dockerfile index fe3610e4..c92a0e2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN set -eux; \ rm -rf /var/lib/apt/lists/*; \ rm -rf /pkg -FROM golang:1.21-alpine3.19 as binapi-generator +FROM golang:1.22-alpine3.19 as binapi-generator ENV GO111MODULE=on ENV CGO_ENABLED=0 diff --git a/test/build/Dockerfile.integration b/test/build/Dockerfile.integration index b30f399d..fc38f0a8 100644 --- a/test/build/Dockerfile.integration +++ b/test/build/Dockerfile.integration @@ -1,7 +1,7 @@ -FROM buildpack-deps:20.04-scm +FROM buildpack-deps:22.04-scm # Install gotestsum -ARG GOTESTSUM_VERSION=1.10.0 +ARG GOTESTSUM_VERSION=1.12.0 RUN set -eux; \ curl -fsSL https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz -o gotestsum.tar.gz; \ tar -xf gotestsum.tar.gz gotestsum; \ @@ -9,7 +9,7 @@ RUN set -eux; \ rm gotestsum.tar.gz; # Install Go -ENV GOLANG_VERSION 1.20 +ENV GOLANG_VERSION 1.22.4 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \