Skip to content

Commit dc7b81a

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent 66c055f commit dc7b81a

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