Skip to content

Commit ef4fe93

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent b2b1d40 commit ef4fe93

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- name: Check out code
2727
uses: actions/checkout@v5
2828
- name: Set up Go
29-
uses: actions/setup-go@v5
29+
uses: actions/setup-go@v6
3030
with:
3131
check-latest: true
32-
go-version: 1.24.6
32+
go-version: 1.24.7
3333
- name: Run golangci-lint
3434
uses: golangci/golangci-lint-action@v8
3535
with:

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- name: Check out code
3030
uses: actions/checkout@v5
3131
- name: Set up Go
32-
uses: actions/setup-go@v5
32+
uses: actions/setup-go@v6
3333
with:
3434
check-latest: true
35-
go-version: 1.24.6
35+
go-version: 1.24.7
3636
code_coverage:
3737
name: Code coverage report
3838
if: github.event_name == 'pull_request'
@@ -60,10 +60,10 @@ jobs:
6060
- name: Check out code
6161
uses: actions/checkout@v5
6262
- name: Set up Go
63-
uses: actions/setup-go@v5
63+
uses: actions/setup-go@v6
6464
with:
6565
check-latest: true
66-
go-version: 1.24.6
66+
go-version: 1.24.7
6767
- name: Run tests and generate coverage report
6868
run: make build/cover.out
6969
- name: Archive code coverage results

.github/workflows/codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- name: Check out code
3030
uses: actions/checkout@v5
3131
- name: Set up Go
32-
uses: actions/setup-go@v5
32+
uses: actions/setup-go@v6
3333
with:
3434
check-latest: true
35-
go-version: 1.24.6
35+
go-version: 1.24.7
3636
- name: Initialize CodeQL
3737
uses: github/codeql-action/init@v3
3838
with:

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ install-controller-gen: FORCE
5454
install-setup-envtest: FORCE
5555
@if ! hash setup-envtest 2>/dev/null; then printf "\e[1;36m>> Installing setup-envtest (this may take a while)...\e[0m\n"; go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest; fi
5656

57-
GO_BUILDFLAGS := $(GO_BUILDFLAGS)
58-
GO_LDFLAGS := $(GO_LDFLAGS)
59-
GO_TESTFLAGS := $(GO_TESTFLAGS)
60-
GO_TESTENV := $(GO_TESTENV)
61-
GO_BUILDENV := $(GO_BUILDENV)
57+
# To add additional flags or values, specify the variable in the environment, e.g. `GO_BUILDFLAGS='-tags experimental' make`.
58+
# To override the default flags or values, specify the variable on the command line, e.g. `make GO_BUILDFLAGS='-tags experimental'`.
59+
GO_BUILDFLAGS +=
60+
GO_LDFLAGS +=
61+
GO_TESTFLAGS +=
62+
GO_TESTENV +=
63+
GO_BUILDENV +=
6264

6365
# which packages to test with test runner
6466
GO_TESTPKGS := $(shell go list -f '{{if or .TestGoFiles .XTestGoFiles}}{{.ImportPath}}{{end}}' ./...)
@@ -149,11 +151,9 @@ clean: FORCE
149151
git clean -dxf build
150152

151153
vars: FORCE
152-
@printf "GO_BUILDENV=$(GO_BUILDENV)\n"
153154
@printf "GO_BUILDFLAGS=$(GO_BUILDFLAGS)\n"
154155
@printf "GO_COVERPKGS=$(GO_COVERPKGS)\n"
155156
@printf "GO_LDFLAGS=$(GO_LDFLAGS)\n"
156-
@printf "GO_TESTENV=$(GO_TESTENV)\n"
157157
@printf "GO_TESTFLAGS=$(GO_TESTFLAGS)\n"
158158
@printf "GO_TESTPKGS=$(GO_TESTPKGS)\n"
159159
@printf "MAKE=$(MAKE)\n"

0 commit comments

Comments
 (0)