Skip to content

Commit 55f2f12

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/sapcc/go-bits v0.0.0-20260311133606-85c1036e18a0 => v0.0.0-20260312170110-034b497ebb7e
1 parent 52b796b commit 55f2f12

File tree

6 files changed

+85
-82
lines changed

6 files changed

+85
-82
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

.golangci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ linters:
139139
- G112
140140
# if we put a password or token into a serialized payload, guess what, we probably did that on purpose
141141
- G117
142+
# 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;
143+
# but that is incorrect, ParseForm() by default never parses more than 10 MiB for this specific reason
144+
- G120
142145
# created file permissions are restricted by umask if necessary
143146
- G306
144147
# the following lints cause false-positives in many repositories, should be fixed with the next release. (see https://github.com/securego/gosec/issues/1500)

0 commit comments

Comments
 (0)