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 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