diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 3ff709a..514fed4 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@master with: - go-version: 1.20.x + go-version: 1.23.x - name: build run: | diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 4f2c391..7dd7f08 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@master with: - go-version: 1.20.x + go-version: 1.23.x - name: Prepare id: prepare diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3097b7c..ccceb7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@master with: - go-version: 1.20.x + go-version: 1.23.x - name: Prepare id: prepare diff --git a/Dockerfile b/Dockerfile index c389c09..1e4f47c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.20 as builder +FROM golang:1.23 as builder ARG TARGETOS ARG TARGETARCH diff --git a/go.mod b/go.mod index 72364d4..f9f4cbb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cuisongliu/automq-operator -go 1.20 +go 1.23 require ( github.com/onsi/ginkgo/v2 v2.11.0