Skip to content

Commit b2afd09

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent 52d9569 commit b2afd09

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,13 @@ install-reuse: FORCE
4848

4949
prepare-static-check: FORCE install-golangci-lint install-modernize install-shellcheck install-go-licence-detector install-addlicense install-reuse
5050

51-
GO_BUILDFLAGS := $(GO_BUILDFLAGS)
52-
GO_LDFLAGS := $(GO_LDFLAGS)
53-
GO_TESTFLAGS := $(GO_TESTFLAGS)
54-
GO_TESTENV := $(GO_TESTENV)
55-
GO_BUILDENV := $(GO_BUILDENV)
51+
# To add additional flags or values, specify the variable in the environment, e.g. `GO_BUILDFLAGS='-tags experimental' make`.
52+
# To override the default flags or values, specify the variable on the command line, e.g. `make GO_BUILDFLAGS='-tags experimental'`.
53+
GO_BUILDFLAGS +=
54+
GO_LDFLAGS +=
55+
GO_TESTFLAGS +=
56+
GO_TESTENV +=
57+
GO_BUILDENV +=
5658

5759
# These definitions are overridable, e.g. to provide fixed version/commit values when
5860
# no .git directory is present or to provide a fixed build date for reproducibility.
@@ -147,7 +149,6 @@ vars: FORCE
147149
@printf "BININFO_BUILD_DATE=$(BININFO_BUILD_DATE)\n"
148150
@printf "BININFO_COMMIT_HASH=$(BININFO_COMMIT_HASH)\n"
149151
@printf "BININFO_VERSION=$(BININFO_VERSION)\n"
150-
@printf "GO_BUILDENV=$(GO_BUILDENV)\n"
151152
@printf "GO_BUILDFLAGS=$(GO_BUILDFLAGS)\n"
152153
@printf "GO_COVERPKGS=$(GO_COVERPKGS)\n"
153154
@printf "GO_LDFLAGS=$(GO_LDFLAGS)\n"

0 commit comments

Comments
 (0)