From da48e44351a8ce326b4c5470ae694513edfd6081 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 04:28:51 +0000 Subject: [PATCH 1/2] Update golang Docker tag to v1.22.0 --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 063b757..dcc17f6 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -5,7 +5,7 @@ # # build go binaries # -FROM golang:1.21.6 as builder +FROM golang:1.22.0 as builder ARG VERSION ARG SHA1 From d2a681de8e3f8dd721629634e46a94d4d5e93710 Mon Sep 17 00:00:00 2001 From: Thibault Richard Date: Tue, 27 Feb 2024 16:41:55 +0100 Subject: [PATCH 2/2] moar --- .buildkite/pipeline.yml | 4 ++-- .github/workflows/go.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index ded5c0c..a6e4ce6 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -7,14 +7,14 @@ steps: - label: ":go: lint" command: make lint agents: - image: "golang:1.21.6" + image: "golang:1.22.0" cpu: "4" memory: "8G" - label: ":go: tests" command: make unit-tests agents: - image: "golang:1.21.6" + image: "golang:1.22.0" cpu: "4" memory: "4G" diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 00ab936..8d06896 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.21" + go-version: "1.22" - name: Build run: make lint unit-tests build-binary \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0e013c..9050d88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.21" + go-version: "1.22" id: go - name: Cache Go Modules