diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aaacb136a..f3fd97802 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,7 +47,7 @@ jobs: - name: Set up golang uses: actions/setup-go@v3 with: - go-version: 1.20.7 + go-version: 1.22 - name: Run integration test run: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 43820f1ee..8e3645cda 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: uses: actions/setup-go@v3 id: go with: - go-version: 1.20.7 + go-version: 1.22 - name: Set release version env var run: | diff --git a/build/noderesourcetopology-plugin/Dockerfile b/build/noderesourcetopology-plugin/Dockerfile index a78d378a3..4c436e013 100644 --- a/build/noderesourcetopology-plugin/Dockerfile +++ b/build/noderesourcetopology-plugin/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.20 as builder +FROM golang:1.22 as builder WORKDIR /go/src/sigs.k8s.io/scheduler-plugins COPY . . diff --git a/build/noderesourcetopology-plugin/Dockerfile.tools b/build/noderesourcetopology-plugin/Dockerfile.tools index d2ed4cc41..658518592 100644 --- a/build/noderesourcetopology-plugin/Dockerfile.tools +++ b/build/noderesourcetopology-plugin/Dockerfile.tools @@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi9/ubi ENV HOME=/home/ci ENV GOROOT=/usr/local/go -ENV GOVERSION=1.20.10 +ENV GOVERSION=1.22.2 ENV GOPATH=/go ENV GOBIN=${GOPATH}/bin ENV PATH=${PATH}:${GOROOT}/bin:${GOBIN}