diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4eb8f1def..697b9cf7f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: test-unit: runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: lint-go: runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 @@ -54,7 +54,7 @@ jobs: lint-charts: runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 @@ -69,7 +69,7 @@ jobs: lint-proto: runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: check-codegen: runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 @@ -141,7 +141,7 @@ jobs: needs: [test-unit, lint-go, lint-charts, lint-proto, check-codegen] runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 104f68c4e..1fe67d986 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -159,7 +159,7 @@ jobs: if: github.event_name == 'release' runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm strategy: matrix: os: [linux, darwin, windows] @@ -208,7 +208,7 @@ jobs: if: github.event_name != 'release' runs-on: ubuntu-latest container: - image: golang:1.21.5-bookworm + image: golang:1.21.6-bookworm steps: - name: Install awscli run: | diff --git a/Dockerfile b/Dockerfile index 2107bbfec..7dde849de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ #################################################################################################### # back-end-builder #################################################################################################### -FROM --platform=$BUILDPLATFORM golang:1.21.5-bookworm as back-end-builder +FROM --platform=$BUILDPLATFORM golang:1.21.6-bookworm as back-end-builder ARG TARGETOS ARG TARGETARCH diff --git a/Dockerfile.dev b/Dockerfile.dev index 44ba116e8..1db57831e 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM golang:1.21.5-bookworm +FROM golang:1.21.6-bookworm ARG TARGETARCH