From 073750030c0c85867b6de8584436af86522ee22e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:39:38 +0100 Subject: [PATCH] Bump golang from 1.23.2 to 1.23.3 (#1) * Bump golang from 1.23.2 to 1.23.3 Bumps golang from 1.23.2 to 1.23.3. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Update ci.yml --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marat Reymers <16486128+maratori@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- dev.dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06c70f4..476c54d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.23.2" # update together with dev.dockerfile + go-version: "1.23.3" # update together with dev.dockerfile - name: Debug with tmate SSH if enabled if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }} uses: mxschmitt/action-tmate@v3 @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.23.2" # update together with dev.dockerfile + go-version: "1.23.3" # update together with dev.dockerfile - run: make test-latest-deps test22: @@ -59,7 +59,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.23.2" # update together with dev.dockerfile + go-version: "1.23.3" # update together with dev.dockerfile - uses: golangci/golangci-lint-action@v6 with: version: "v1.61.0" # update together with dev.dockerfile @@ -71,5 +71,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.23.2" # update together with dev.dockerfile + go-version: "1.23.3" # update together with dev.dockerfile - run: make check-tidy diff --git a/dev.dockerfile b/dev.dockerfile index 8b4f1db..c93d393 100644 --- a/dev.dockerfile +++ b/dev.dockerfile @@ -1,5 +1,5 @@ # update together with .github/workflows/ci.yml -FROM golang:1.23.2 AS go +FROM golang:1.23.3 AS go # update together with .github/workflows/ci.yml FROM golangci/golangci-lint:v1.61.0 AS linter