From b76fd028a993a4ed1ceb2dce3c34fbdad55b5786 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 18:09:35 +0530 Subject: [PATCH] chore(deps): bump golang from 1.23.1-bookworm to 1.23.2-bookworm (#2672) Signed-off-by: dependabot[bot] Signed-off-by: Faeka Ansari Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Faeka Ansari --- .github/workflows/ci.yaml | 12 ++++++------ .github/workflows/release.yaml | 4 ++-- Dockerfile | 2 +- Dockerfile.dev | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index abea9503d..d4550de7e 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.1-bookworm + image: golang:1.23.2-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 @@ -73,7 +73,7 @@ jobs: checks: write # Used to create checks (linting comments) on PRs runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm steps: - name: Checkout code uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 @@ -98,7 +98,7 @@ jobs: lint-charts: runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm steps: - name: Checkout code uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 @@ -122,7 +122,7 @@ jobs: checks: write # Used to create checks (linting comments) on PRs runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm steps: - name: Checkout code uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 @@ -145,7 +145,7 @@ jobs: check-codegen: runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm steps: - name: Checkout code uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 @@ -205,7 +205,7 @@ jobs: needs: [test-unit, lint-go, lint-charts, lint-proto, lint-ui, check-codegen] runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm steps: - name: Checkout code uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fc99efc10..4d0a2a46e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -164,7 +164,7 @@ jobs: if: github.event_name == 'release' runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm strategy: matrix: os: [linux, darwin, windows] @@ -232,7 +232,7 @@ jobs: if: github.event_name != 'release' runs-on: ubuntu-latest container: - image: golang:1.23.1-bookworm + image: golang:1.23.2-bookworm strategy: matrix: os: [linux, darwin, windows] diff --git a/Dockerfile b/Dockerfile index e74c4d29b..00800a2af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN NODE_ENV='production' VERSION=${VERSION} pnpm run build #################################################################################################### # back-end-builder #################################################################################################### -FROM --platform=$BUILDPLATFORM golang:1.23.1-bookworm AS back-end-builder +FROM --platform=$BUILDPLATFORM golang:1.23.2-bookworm AS back-end-builder ARG TARGETOS ARG TARGETARCH diff --git a/Dockerfile.dev b/Dockerfile.dev index c6dec842c..4e7dcf6a3 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM golang:1.23.1-bookworm +FROM golang:1.23.2-bookworm ARG TARGETARCH