Skip to content

Commit e361066

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260311150525-0bc36d8c1474 => v0.0.0-20260312093116-66c055fa880c go: upgraded github.com/sapcc/go-bits v0.0.0-20260311133606-85c1036e18a0 => v0.0.0-20260312170110-034b497ebb7e
1 parent d863dc6 commit e361066

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ go 1.26.0
55
require (
66
github.com/PaesslerAG/gval v1.2.4
77
github.com/blang/semver/v4 v4.0.0
8-
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260311150525-0bc36d8c1474
8+
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260312093116-66c055fa880c
99
github.com/elastic/go-ucfg v0.9.1
1010
github.com/go-logr/logr v1.4.3
1111
github.com/gophercloud/gophercloud/v2 v2.11.1
1212
github.com/onsi/ginkgo/v2 v2.28.1
1313
github.com/onsi/gomega v1.39.1
1414
github.com/prometheus/client_golang v1.23.2
1515
github.com/prometheus/common v0.67.5
16-
github.com/sapcc/go-bits v0.0.0-20260311133606-85c1036e18a0
16+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e
1717
github.com/sapcc/ucfgwrap v0.0.0-20221123134804-375b5fb88359
1818
github.com/slack-go/slack v0.17.3
1919
github.com/vmware/govmomi v0.52.0

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM
1010
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
1111
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
1212
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
13-
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260311150525-0bc36d8c1474 h1:lyWuwb1pC3XmZ06lxeBjW5kAAj/doAuBdZrsefgx9MI=
14-
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260311150525-0bc36d8c1474/go.mod h1:b0KmJdxvRI8UXlGe8cRm5BD8Tm2WhF7zSKMSIRGyVL4=
13+
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260312093116-66c055fa880c h1:xqk/Sd2/Hdtskf2oFl/oqfqh9uUpj4XI1dEwXzKfjJY=
14+
github.com/cobaltcore-dev/openstack-hypervisor-operator v0.0.0-20260312093116-66c055fa880c/go.mod h1:b0KmJdxvRI8UXlGe8cRm5BD8Tm2WhF7zSKMSIRGyVL4=
1515
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1616
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1717
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -122,8 +122,8 @@ github.com/prometheus/procfs v0.17.0 h1:FuLQ+05u4ZI+SS/w9+BWEM2TXiHKsUQ9TADiRH7D
122122
github.com/prometheus/procfs v0.17.0/go.mod h1:oPQLaDAMRbA+u8H5Pbfq+dl3VDAvHxMUOVhe0wYB2zw=
123123
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
124124
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
125-
github.com/sapcc/go-bits v0.0.0-20260311133606-85c1036e18a0 h1:fZyFC9x/VWebicfB6wuzaieTnCXWmLQnjfLS05BEzIE=
126-
github.com/sapcc/go-bits v0.0.0-20260311133606-85c1036e18a0/go.mod h1:NZjMiGVm04U25vwR6ZWvMw0XOOnvS1jkmXpjiepOeUw=
125+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e h1:4wgkrfAlnL6ffM7HTNoHn1HrBBurCRR71WNOszdiDNQ=
126+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e/go.mod h1:NZjMiGVm04U25vwR6ZWvMw0XOOnvS1jkmXpjiepOeUw=
127127
github.com/sapcc/ucfgwrap v0.0.0-20221123134804-375b5fb88359 h1:+WaEmX1MhwTnd4OzXPXPzzbY3HrX4BkpuoXkleKzo6M=
128128
github.com/sapcc/ucfgwrap v0.0.0-20221123134804-375b5fb88359/go.mod h1:Sffk+MtZYoSaWPfxl9d9ZFUJLxlesm8tfZPb9LkHCd4=
129129
github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw=

0 commit comments

Comments
 (0)