From 14662d899463ea63581c3c27943fd1f69fa61314 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 23:23:01 +0000 Subject: [PATCH] Bump golang from 1.21.5 to 1.21.6 (#48) * Bump golang from 1.21.5 to 1.21.6 Bumps golang from 1.21.5 to 1.21.6. --- 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 | 6 +++--- dev.dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57f441c..0e3a7d1 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.21.5" # update together with dev.dockerfile + go-version: "1.21.6" # 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 @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.21.5" # update together with dev.dockerfile + go-version: "1.21.6" # update together with dev.dockerfile - uses: golangci/golangci-lint-action@v3 with: version: "v1.55.2" # update together with dev.dockerfile @@ -50,5 +50,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.21.5" # update together with dev.dockerfile + go-version: "1.21.6" # update together with dev.dockerfile - run: make check-tidy diff --git a/dev.dockerfile b/dev.dockerfile index 1b75a7f..0c29009 100644 --- a/dev.dockerfile +++ b/dev.dockerfile @@ -1,5 +1,5 @@ # update together with .github/workflows/ci.yml -FROM golang:1.21.5 AS go +FROM golang:1.21.6 AS go # update together with .github/workflows/ci.yml FROM golangci/golangci-lint:v1.55.2 AS linter