diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml index de8020ae5f..c2def3200d 100644 --- a/.github/workflows/docker-build-and-push.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -29,11 +29,6 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-go@v5 - with: - go-version: '1.22.2' - - run: go version - - name: Set Version from the release title. if: github.event_name == 'workflow_dispatch' run: | @@ -66,11 +61,6 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-go@v5 - with: - go-version: '1.22.2' - - run: go version - - name: Set Version from the release title. if: github.event_name == 'workflow_dispatch' run: | diff --git a/Dockerfile b/Dockerfile index 570a08ec4d..5655def3c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build Stage -FROM golang:1.20-alpine3.18 AS builder +FROM golang:1.22.2-alpine3.18 AS builder ENV GOPATH /go ENV GOOS=linux