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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-go@v6
with:
check-latest: true
go-version: 1.25.5
go-version: 1.25.6
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/setup-go@v6
with:
check-latest: true
go-version: 1.25.5
go-version: 1.25.6
- name: Build all binaries
run: make build-all
code_coverage:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/setup-go@v6
with:
check-latest: true
go-version: 1.25.5
go-version: 1.25.6
- name: Run tests and generate coverage report
run: make build/cover.out
- name: Archive code coverage results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/setup-go@v6
with:
check-latest: true
go-version: 1.25.5
go-version: 1.25.6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/container-registry-ghcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
type=semver,pattern={{raw}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
# https://github.com/docker/metadata-action#typesha
type=sha,format=long
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company
# SPDX-License-Identifier: Apache-2.0

FROM golang:1.25.5-alpine3.23 AS builder
FROM golang:1.25.6-alpine3.23 AS builder

RUN apk add --no-cache --no-progress ca-certificates gcc git make musl-dev

Expand All @@ -14,7 +14,7 @@ RUN make -C /src install PREFIX=/pkg GOTOOLCHAIN=local
# To only build the tests run: docker build . --target test
# We can't do `FROM builder AS test` here, as then make prepare-static-check would not be cached during interactive use when developing
# and caching all the tools, especially golangci-lint, takes a few minutes.
FROM golang:1.25.5-alpine3.23 AS test
FROM golang:1.25.6-alpine3.23 AS test

COPY Makefile /src/Makefile

Expand Down
1 change: 1 addition & 0 deletions Makefile.maker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ githubWorkflow:
- latest
- semver
- edge
- sha
license:
enabled: true

Expand Down
2 changes: 1 addition & 1 deletion charts/kvm-node-agent/crds/hypervisor-crd.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
Expand Down Expand Up @@ -518,3 +517,4 @@ spec:
storage: true
subresources:
status: {}

Loading