From c50e7ec3578e863861fdbc395a0e4a68545c184c Mon Sep 17 00:00:00 2001 From: BrunoTarijon Date: Wed, 6 Mar 2024 16:18:47 -0300 Subject: [PATCH] Update go version in the gh workflow and Dockerfile --- .github/workflows/ci.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b8790c0..936647d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.22 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: @@ -22,7 +22,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.22 - name: Test GO run: make test diff --git a/Dockerfile b/Dockerfile index f793292..ee235aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.19 as builder +FROM golang:1.22 as builder ARG TARGETOS ARG TARGETARCH