From 6a14bf076edd83281aba34ed3532b123376f6ea6 Mon Sep 17 00:00:00 2001 From: Ali Afsharzadeh Date: Fri, 7 Jun 2024 21:27:24 +0330 Subject: [PATCH] Upgrade golang from 1.22.2 to 1.22.4 --- .github/workflows/build.yaml | 4 ++-- builder/Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b41323c6..2213fd36 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22.2" + go-version: "1.22.4" - name: Run build run: make build - name: golangci-lint @@ -41,6 +41,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22.2" + go-version: "1.22.4" - name: Run integration tests run: make test-integration diff --git a/builder/Dockerfile b/builder/Dockerfile index 7f23e0a5..b5fe4801 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.22.2-alpine AS builder +FROM golang:1.22.4-alpine AS builder ARG GIT_TAG WORKDIR /src diff --git a/go.mod b/go.mod index 9a9669f1..7b4e441c 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/jcmoraisjr/haproxy-ingress go 1.22.0 -toolchain go1.22.2 +toolchain go1.22.4 require ( github.com/Masterminds/sprig/v3 v3.2.3