diff --git a/.github/workflows/pre-main.yml b/.github/workflows/pre-main.yml index 1ad0a553a..ae28fba75 100644 --- a/.github/workflows/pre-main.yml +++ b/.github/workflows/pre-main.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 with: - go-version: 1.23.2 + go-version: 1.23.3 - uses: nosborn/github-action-markdown-cli@9b5e871c11cc0649c5ac2526af22e23525fa344d # v3.3.0 with: @@ -57,7 +57,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 with: - go-version: 1.23.2 + go-version: 1.23.3 - name: Install ginkgo run: make install-ginkgo @@ -76,7 +76,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 with: - go-version: 1.23.2 + go-version: 1.23.3 - name: Checkout the certsuite repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 diff --git a/.github/workflows/qe.yml b/.github/workflows/qe.yml index e947f2f32..fbd6feabd 100644 --- a/.github/workflows/qe.yml +++ b/.github/workflows/qe.yml @@ -38,7 +38,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 with: - go-version: 1.23.2 + go-version: 1.23.3 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" diff --git a/go.mod b/go.mod index 70886d9c0..42265de26 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/redhat-best-practices-for-k8s/certsuite-qe -go 1.23.2 +go 1.23.3 require ( github.com/golang/glog v1.2.3 diff --git a/scripts/install-latest-go.sh b/scripts/install-latest-go.sh index 0e1ae80f5..07357b72d 100755 --- a/scripts/install-latest-go.sh +++ b/scripts/install-latest-go.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -REQUIRED_GO_VERSION=1.23.2 +REQUIRED_GO_VERSION=1.23.3 INSTALLED_GO_VERSION="$( go version | { read -r _ _ v _