diff --git a/.github/workflows/checkLicenses.yml b/.github/workflows/checkLicenses.yml index a7e240053..91b443da1 100644 --- a/.github/workflows/checkLicenses.yml +++ b/.github/workflows/checkLicenses.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - run: | ./scripts/create-licenses.sh # Upload the licenses list so it's available if needed diff --git a/.github/workflows/e2eEnvironment.yml b/.github/workflows/e2eEnvironment.yml index 848f60278..026aad5db 100644 --- a/.github/workflows/e2eEnvironment.yml +++ b/.github/workflows/e2eEnvironment.yml @@ -34,7 +34,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - uses: actions/checkout@v3 # Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions # If you upgrade this version confirm the changes match your expectations diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a1f35feb6..cb7402537 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -48,7 +48,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' id: go - name: Check out code into the Go module directory uses: actions/checkout@v3 @@ -70,7 +70,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' id: go - name: Check out code into the Go module directory uses: actions/checkout@v3 @@ -88,7 +88,7 @@ jobs: # - name: Set up Go # uses: actions/setup-go@v1 # with: -# go-version: '>=1.21.4' +# go-version: '>=1.21.5' # id: go # - name: Check out code into the Go module directory # uses: actions/checkout@v3 diff --git a/.github/workflows/live-e2e.yml b/.github/workflows/live-e2e.yml index 28fad4b12..9457a05f0 100644 --- a/.github/workflows/live-e2e.yml +++ b/.github/workflows/live-e2e.yml @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - uses: actions/checkout@master # Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions # If you upgrade this version confirm the changes match your expectations diff --git a/.github/workflows/porch-e2e.yml b/.github/workflows/porch-e2e.yml index de083c691..217d9b662 100644 --- a/.github/workflows/porch-e2e.yml +++ b/.github/workflows/porch-e2e.yml @@ -58,7 +58,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - name: Checkout Porch uses: actions/checkout@v3 - name: Build kpt diff --git a/.github/workflows/porch.yml b/.github/workflows/porch.yml index 0179faa1c..2ce6e5ada 100644 --- a/.github/workflows/porch.yml +++ b/.github/workflows/porch.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - name: Run Porch Unit Tests uses: actions/checkout@v3 - name: Verify format / headers etc diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84b6067d5..7371add98 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - name: Checkout uses: actions/checkout@v3 with: diff --git a/.github/workflows/verifyContent.yml b/.github/workflows/verifyContent.yml index 2a0355469..04f40c722 100644 --- a/.github/workflows/verifyContent.yml +++ b/.github/workflows/verifyContent.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: '>=1.21.4' + go-version: '>=1.21.5' - uses: actions/checkout@v3 - run: | make build diff --git a/Makefile b/Makefile index fbefa90c2..c93a5edf3 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -GOLANG_VERSION := 1.21.4 +GOLANG_VERSION := 1.21.5 GORELEASER_CONFIG = release/tag/goreleaser.yaml GORELEASER_IMAGE := ghcr.io/goreleaser/goreleaser-cross:v$(GOLANG_VERSION) diff --git a/porch/build/Dockerfile.apiserver b/porch/build/Dockerfile.apiserver index 6523064cc..1a45ed113 100644 --- a/porch/build/Dockerfile.apiserver +++ b/porch/build/Dockerfile.apiserver @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /workspace/src RUN git clone https://github.com/kubernetes/kubernetes --branch v1.23.2 --depth=1 diff --git a/porch/build/Dockerfile.etcd b/porch/build/Dockerfile.etcd index 815136e9e..b5010e950 100644 --- a/porch/build/Dockerfile.etcd +++ b/porch/build/Dockerfile.etcd @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /workspace ARG ETCD_VER=v3.5.1 diff --git a/porch/build/Dockerfile.porch b/porch/build/Dockerfile.porch index 2e25d522f..b06f58521 100644 --- a/porch/build/Dockerfile.porch +++ b/porch/build/Dockerfile.porch @@ -13,7 +13,7 @@ # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /go/src/github.com/GoogleContainerTools/kpt diff --git a/porch/controllers/Dockerfile b/porch/controllers/Dockerfile index c3795f1f2..32ca98be0 100644 --- a/porch/controllers/Dockerfile +++ b/porch/controllers/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /workspace COPY go.mod go.sum ./ diff --git a/porch/examples/apps/hello-server/Dockerfile b/porch/examples/apps/hello-server/Dockerfile index 6aad2a199..1ff605745 100644 --- a/porch/examples/apps/hello-server/Dockerfile +++ b/porch/examples/apps/hello-server/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /src COPY go.mod go.sum ./ diff --git a/porch/func/Dockerfile b/porch/func/Dockerfile index 482b71a43..d4353735d 100644 --- a/porch/func/Dockerfile +++ b/porch/func/Dockerfile @@ -25,7 +25,7 @@ FROM gcr.io/kpt-fn/set-project-id:v0.2.0 as set-project-id FROM gcr.io/kpt-fn/starlark:v0.3.0 as starlark FROM gcr.io/kpt-fn/upsert-resource:v0.2.0 as upsert-resource -FROM golang:1.21.4-alpine3.18 as builder +FROM golang:1.21.5-alpine3.18 as builder WORKDIR /go/src/github.com/GoogleContainerTools/kpt RUN go install github.com/grpc-ecosystem/grpc-health-probe@v0.4.11 diff --git a/porch/func/Dockerfile-wrapperserver b/porch/func/Dockerfile-wrapperserver index 05608df20..7979e50e3 100644 --- a/porch/func/Dockerfile-wrapperserver +++ b/porch/func/Dockerfile-wrapperserver @@ -1,4 +1,4 @@ -FROM golang:1.21.4-alpine3.18 as builder +FROM golang:1.21.5-alpine3.18 as builder WORKDIR /go/src/github.com/GoogleContainerTools/kpt diff --git a/porch/test/Dockerfile b/porch/test/Dockerfile index f449571d6..136b3d852 100644 --- a/porch/test/Dockerfile +++ b/porch/test/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. -FROM golang:1.21.4-bookworm as builder +FROM golang:1.21.5-bookworm as builder WORKDIR /go/src/github.com/GoogleContainerTools/kpt