diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79534b6e7..3d6ef8c04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - uses: golangci/golangci-lint-action@v6 with: version: v1.54 @@ -33,7 +33,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - run: hack/verify-import-aliases.sh - run: hack/verify-vendor.sh - run: hack/verify-codegen.sh @@ -51,7 +51,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - name: Compile run: make all test: @@ -64,7 +64,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - run: make test e2e-test: name: E2e test diff --git a/builder.dockerfile b/builder.dockerfile index 605189b08..215d52893 100644 --- a/builder.dockerfile +++ b/builder.dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.6 +FROM golang:1.22.3 # FROM golang:1.19.2-alpine # RUN apk add --no-cache build-base git bash