diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bb7bd6749..f72103dc7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: test-unit: runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: # Install Git from "trixie" repository to get a more recent version than # the one available in "stable". This can be removed once the version in @@ -75,7 +75,7 @@ jobs: checks: write # Used to create checks (linting comments) on PRs runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -100,7 +100,7 @@ jobs: lint-charts: runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -124,7 +124,7 @@ jobs: checks: write # Used to create checks (linting comments) on PRs runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -147,7 +147,7 @@ jobs: check-codegen: runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -223,7 +223,7 @@ jobs: needs: [test-unit, lint-go, lint-charts, lint-proto, lint-and-typecheck-ui, check-codegen] runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 531d2d1b6..2e6819655 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -177,7 +177,7 @@ jobs: if: github.event_name == 'release' runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm strategy: matrix: os: [linux, darwin, windows] @@ -245,7 +245,7 @@ jobs: if: github.event_name != 'release' runs-on: ubuntu-latest container: - image: golang:1.23.3-bookworm + image: golang:1.23.4-bookworm strategy: matrix: os: [linux, darwin, windows] diff --git a/Dockerfile b/Dockerfile index a0d205e2f..1cdfae044 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN NODE_ENV='production' VERSION=${VERSION} pnpm run build #################################################################################################### # back-end-builder #################################################################################################### -FROM --platform=$BUILDPLATFORM golang:1.23.3-bookworm AS back-end-builder +FROM --platform=$BUILDPLATFORM golang:1.23.4-bookworm AS back-end-builder ARG TARGETOS ARG TARGETARCH diff --git a/Dockerfile.dev b/Dockerfile.dev index 5e4df8dc5..1d1f400fd 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM golang:1.23.3-bookworm +FROM golang:1.23.4-bookworm ARG TARGETARCH