Skip to content

Commit c7ddbf5

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent 6a1cd15 commit c7ddbf5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Check out code
4646
uses: actions/checkout@v6
4747
- name: Post coverage report
48-
uses: fgrosse/go-coverage-report@v1.2.0
48+
uses: fgrosse/go-coverage-report@v1.3.0
4949
with:
5050
coverage-artifact-name: code-coverage
5151
coverage-file-name: cover.out

.github/workflows/container-registry-ghcr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Check out code
2424
uses: actions/checkout@v6
2525
- name: Log in to the Container registry
26-
uses: docker/login-action@v3
26+
uses: docker/login-action@v4
2727
with:
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929
registry: ghcr.io
@@ -47,9 +47,9 @@ jobs:
4747
- name: Set up QEMU
4848
uses: docker/setup-qemu-action@v3
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v3
50+
uses: docker/setup-buildx-action@v4
5151
- name: Build and push Docker image
52-
uses: docker/build-push-action@v6
52+
uses: docker/build-push-action@v7
5353
with:
5454
context: .
5555
labels: ${{ steps.meta.outputs.labels }}

.golangci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ linters:
138138
- G112
139139
# if we put a password or token into a serialized payload, guess what, we probably did that on purpose
140140
- G117
141+
# this triggers on net/http.Request.ParseForm() and its callers, e.g. net/http.Request.FormValue(), complaining about potential memory exhaustion from unbounded form parsing;
142+
# but that is incorrect, ParseForm() by default never parses more than 10 MiB for this specific reason
143+
- G120
141144
# created file permissions are restricted by umask if necessary
142145
- G306
143146
# the following lints cause false-positives in many repositories, should be fixed with the next release. (see https://github.com/securego/gosec/issues/1500)

.license-scan-overrides.jsonl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
{"name": "github.com/mattn/go-localereader", "licenceType": "MIT"}
77
{"name": "github.com/miekg/dns", "licenceType": "BSD-3-Clause"}
88
{"name": "github.com/pashagolub/pgxmock/v4", "licenceType": "BSD-3-Clause"}
9+
{"name": "github.com/pashagolub/pgxmock/v5", "licenceType": "BSD-3-Clause"}
910
{"name": "github.com/spdx/tools-golang", "licenceTextOverrideFile": "vendor/github.com/spdx/tools-golang/LICENSE.code"}
1011
{"name": "github.com/xeipuuv/gojsonpointer", "licenceType": "Apache-2.0"}
1112
{"name": "github.com/xeipuuv/gojsonreference", "licenceType": "Apache-2.0"}

0 commit comments

Comments
 (0)