Skip to content

Commit f0f2e13

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent 50cf791 commit f0f2e13

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yaml

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

.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)

0 commit comments

Comments
 (0)