diff --git a/.github/actions/setup-go/action.yml b/.github/actions/setup-go/action.yml index 42be8d1fd..9509680ff 100644 --- a/.github/actions/setup-go/action.yml +++ b/.github/actions/setup-go/action.yml @@ -6,4 +6,4 @@ runs: - name: Setup go uses: actions/setup-go@v4 with: - go-version: '1.23.0' + go-version: '1.23.1' diff --git a/.golangci.yml b/.golangci.yml index 595750035..780e63304 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,6 @@ run: timeout: 5m - go: "1.23.0" + go: "1.23.1" linters-settings: cyclop: max-complexity: 15 diff --git a/Dockerfile b/Dockerfile index a5a49ddcd..b3879b69e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Container for building Go binary. -FROM golang:1.23.0-bookworm AS builder +FROM golang:1.23.1-bookworm AS builder # Install dependencies RUN apt-get update && apt-get install -y build-essential git # Prep and copy source diff --git a/testutil/promrated/Dockerfile b/testutil/promrated/Dockerfile index a757b24ee..6de3992ad 100644 --- a/testutil/promrated/Dockerfile +++ b/testutil/promrated/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.0-alpine AS builder +FROM golang:1.23.1-alpine AS builder # Install dependencies RUN apk add --no-cache build-base git