Skip to content

Commit 1c86ea8

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent a5f0995 commit 1c86ea8

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

.dockerignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company
22
# SPDX-License-Identifier: Apache-2.0
33

4-
/.dockerignore
54
.DS_Store
5+
/*.env*
6+
/.dockerignore
67
# TODO: uncomment when applications no longer use git to get version information
78
#.git/
89
/.github/
910
/.gitignore
10-
/.goreleaser.yml
11-
/*.env*
1211
/.golangci.yaml
12+
/.goreleaser.yml
1313
/.vscode/
14-
/build/
1514
/CONTRIBUTING.md
1615
/Dockerfile
17-
/docs/
1816
/LICENSE*
1917
/Makefile.maker.yaml
2018
/README.md
19+
/build/
20+
/docs/
21+
/go.work
22+
/go.work.sum
2123
/report.html
2224
/shell.nix
2325
/testing/

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ indent_size = 2
1212

1313
[{Makefile,go.mod,go.sum,*.go}]
1414
indent_style = tab
15+
indent_size = unset
1516

1617
[*.md]
1718
trim_trailing_whitespace = false

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-go@v5
3030
with:
3131
check-latest: true
32-
go-version: 1.24.4
32+
go-version: 1.24.5
3333
- name: Run golangci-lint
3434
uses: golangci/golangci-lint-action@v8
3535
with:

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.24.4
35+
go-version: 1.24.5
3636
- name: Build all binaries
3737
run: make build-all
3838
test:
@@ -47,6 +47,6 @@ jobs:
4747
uses: actions/setup-go@v5
4848
with:
4949
check-latest: true
50-
go-version: 1.24.4
50+
go-version: 1.24.5
5151
- name: Run tests and generate coverage report
5252
run: make build/cover.out

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.24.4
35+
go-version: 1.24.5
3636
- name: Initialize CodeQL
3737
uses: github/codeql-action/init@v3
3838
with:

.license-scan-overrides.jsonl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{"name": "github.com/chzyer/logex", "licenceType": "MIT"}
22
{"name": "github.com/hashicorp/vault/api/auth/approle", "licenceType": "MPL-2.0"}
33
{"name": "github.com/jpillora/longestcommon", "licenceType": "MIT"}
4+
{"name": "github.com/logrusorgru/aurora", "licenceType": "Unlicense"}
45
{"name": "github.com/mattn/go-localereader", "licenceType": "MIT"}
56
{"name": "github.com/miekg/dns", "licenceType": "BSD-3-Clause"}
7+
{"name": "github.com/pashagolub/pgxmock/v4", "licenceType": "BSD-3-Clause"}
68
{"name": "github.com/spdx/tools-golang", "licenceTextOverrideFile": "vendor/github.com/spdx/tools-golang/LICENSE.code"}
79
{"name": "github.com/xeipuuv/gojsonpointer", "licenceType": "Apache-2.0"}
810
{"name": "github.com/xeipuuv/gojsonreference", "licenceType": "Apache-2.0"}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.24.4-alpine3.22 AS builder
4+
FROM golang:1.24.5-alpine3.22 AS builder
55

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ install-modernize: FORCE
3434
@if ! hash modernize 2>/dev/null; then printf "\e[1;36m>> Installing modernize (this may take a while)...\e[0m\n"; go install golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest; fi
3535

3636
install-shellcheck: FORCE
37-
@if ! hash shellcheck 2>/dev/null; then printf "\e[1;36m>> Installing shellcheck...\e[0m\n"; SHELLCHECK_ARCH=$(shell uname -m); SHELLCHECK_OS=$(shell uname -s | tr '[:upper:]' '[:lower:]'); if [[ "$$SHELLCHECK_OS" == "darwin" ]]; then SHELLCHECK_OS=macos; fi; SHELLCHECK_VERSION="stable"; curl -sLo- "https://github.com/koalaman/shellcheck/releases/download/$$SHELLCHECK_VERSION/shellcheck-$$SHELLCHECK_VERSION.$$SHELLCHECK_OS.$$SHELLCHECK_ARCH.tar.xz" | tar -Jxf -; BIN=$$(go env GOBIN); if [[ -z $$BIN ]]; then BIN=$$(go env GOPATH)/bin; fi; install -Dm755 shellcheck-$$SHELLCHECK_VERSION/shellcheck -t "$$BIN"; rm -rf shellcheck-$$SHELLCHECK_VERSION; fi
37+
@if ! hash shellcheck 2>/dev/null; then printf "\e[1;36m>> Installing shellcheck...\e[0m\n"; SHELLCHECK_ARCH=$(shell uname -m); SHELLCHECK_OS=$(shell uname -s | tr '[:upper:]' '[:lower:]'); if [[ "$$SHELLCHECK_OS" == "darwin" ]]; then SHELLCHECK_OS=macos; fi; SHELLCHECK_VERSION="stable"; if command -v curl >/dev/null 2>&1; then GET="curl -sLo-"; elif command -v wget >/dev/null 2>&1; then GET="wget -O-"; else echo "Didn't find curl or wget to download shellcheck"; exit 2; fi; $$GET "https://github.com/koalaman/shellcheck/releases/download/$$SHELLCHECK_VERSION/shellcheck-$$SHELLCHECK_VERSION.$$SHELLCHECK_OS.$$SHELLCHECK_ARCH.tar.xz" | tar -Jxf -; BIN=$$(go env GOBIN); if [[ -z $$BIN ]]; then BIN=$$(go env GOPATH)/bin; fi; install -Dm755 shellcheck-$$SHELLCHECK_VERSION/shellcheck -t "$$BIN"; rm -rf shellcheck-$$SHELLCHECK_VERSION; fi
3838

3939
install-go-licence-detector: FORCE
4040
@if ! hash go-licence-detector 2>/dev/null; then printf "\e[1;36m>> Installing go-licence-detector (this may take a while)...\e[0m\n"; go install go.elastic.co/go-licence-detector@latest; fi

0 commit comments

Comments
 (0)