Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- .goreleaser.yaml
push:
tags:
- 'v*'
- "v*"

permissions:
contents: read
Expand All @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
with:
go-version: v1.24.3
go-version: v1.24.8
cache: true

- name: Delete non-semver tags
Expand All @@ -41,7 +41,7 @@ jobs:
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # tag=v6.3.0
with:
distribution: goreleaser
version: '~> v2'
version: "~> v2"
args: release --timeout 60m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -51,7 +51,7 @@ jobs:
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # tag=v6.3.0
with:
distribution: goreleaser
version: '~> v2'
version: "~> v2"
args: release --timeout 60m --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 9 additions & 9 deletions .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.3-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-1
command:
- hack/ci/verify.sh
resources:
Expand All @@ -37,7 +37,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.3-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-1
command:
- make
- lint
Expand All @@ -59,7 +59,7 @@ presubmits:
- hack/ci/build-image.sh
env:
- name: DRY_RUN
value: '1'
value: "1"
# docker-in-docker needs privileged mode
securityContext:
privileged: true
Expand All @@ -76,13 +76,13 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.3-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-1
command:
- make
- test
env:
- name: USE_GOTESTSUM
value: '1'
value: "1"
resources:
requests:
memory: 4Gi
Expand All @@ -96,12 +96,12 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.3-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-1
command:
- hack/ci/run-e2e-tests.sh
env:
- name: KCP_VERSION
value: '0.27.1'
value: "0.27.1"
resources:
requests:
memory: 4Gi
Expand All @@ -115,12 +115,12 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.3-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-1
command:
- hack/ci/run-e2e-tests.sh
env:
- name: KCP_VERSION
value: '0.28.1'
value: "0.28.1"
resources:
requests:
memory: 4Gi
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.3 AS builder
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.8 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down