Skip to content

Commit 29260da

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/prometheus/common v0.67.5 => v0.68.1 go: upgraded github.com/sapcc/go-bits v0.0.0-20260529151418-8d2b33444f03 => v0.0.0-20260604095421-6bd206943957
1 parent 053cb8b commit 29260da

6 files changed

Lines changed: 21 additions & 23 deletions

File tree

.github/workflows/checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
27+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2828
with:
2929
persist-credentials: false
3030
- name: Set up Go
3131
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3232
with:
3333
check-latest: true
34-
go-version: 1.26.3
34+
go-version: 1.26.4
3535
- name: Run prepare make target
3636
run: make generate
3737
- name: Run golangci-lint
@@ -45,7 +45,7 @@ jobs:
4545
- name: Dependency Licenses Review
4646
run: make check-dependency-licenses
4747
- name: Check for spelling errors
48-
uses: crate-ci/typos@f8a58b6b53f2279f71eb605f03a4ae4d10608f45 # v1
48+
uses: crate-ci/typos@44e2070e6017f834bf069503acb35ca0ca0b75f2 # v1
4949
env:
5050
CLICOLOR: "1"
5151
- name: Check if source code files have license header

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
30+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3131
with:
3232
persist-credentials: false
3333
- name: Set up Go
3434
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3535
with:
3636
check-latest: true
37-
go-version: 1.26.3
37+
go-version: 1.26.4
3838
- name: Run prepare make target
3939
run: make generate
4040
- name: Build all binaries
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Check out code
50-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
50+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
5151
with:
5252
persist-credentials: false
5353
- name: Post coverage report
@@ -67,14 +67,14 @@ jobs:
6767
runs-on: ubuntu-latest
6868
steps:
6969
- name: Check out code
70-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
70+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
7171
with:
7272
persist-credentials: false
7373
- name: Set up Go
7474
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
7575
with:
7676
check-latest: true
77-
go-version: 1.26.3
77+
go-version: 1.26.4
7878
- name: Run prepare make target
7979
run: make generate
8080
- name: Run tests and generate coverage report

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
30+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3131
with:
3232
persist-credentials: false
3333
- name: Set up Go
3434
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3535
with:
3636
check-latest: true
37-
go-version: 1.26.3
37+
go-version: 1.26.4
3838
- name: Run prepare make target
3939
run: make generate
4040
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
41+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4
4242
with:
4343
languages: go
4444
queries: security-extended
4545
- name: Autobuild
46-
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
46+
uses: github/codeql-action/autobuild@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4
4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
48+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.26.3-alpine3.23 AS builder
4+
FROM golang:1.26.4-alpine3.23 AS builder
55

66
RUN apk add --no-cache --no-progress ca-certificates gcc musl-dev git make
77

@@ -14,7 +14,7 @@ RUN make -C /src install PREFIX=/pkg GOTOOLCHAIN=local
1414
# To only build the tests run: docker build . --target test
1515
# We can't do `FROM builder AS test` here, as then make prepare-static-check would not be cached during interactive use when developing
1616
# and caching all the tools, especially golangci-lint, takes a few minutes.
17-
FROM golang:1.26.3-alpine3.23 AS test
17+
FROM golang:1.26.4-alpine3.23 AS test
1818

1919
COPY Makefile /src/Makefile
2020

@@ -41,7 +41,6 @@ USER 4200:4200
4141
RUN cd /src \
4242
&& { if test -d .git; then git config --global --add safe.directory /src; fi; } \
4343
&& make build/cover.out
44-
4544
################################################################################
4645

4746
FROM alpine:3.23

go.mod

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ require (
99
github.com/h2non/gock v1.2.0
1010
github.com/patrickmn/go-cache v2.1.0+incompatible
1111
github.com/prometheus/client_golang v1.23.2
12-
github.com/prometheus/common v0.67.5
12+
github.com/prometheus/common v0.68.1
1313
github.com/prometheus/prometheus v0.311.3
1414
github.com/rs/cors v1.11.1
15-
github.com/sapcc/go-bits v0.0.0-20260529151418-8d2b33444f03
15+
github.com/sapcc/go-bits v0.0.0-20260604095421-6bd206943957
1616
github.com/spf13/cobra v1.9.1
1717
github.com/spf13/viper v1.20.1
1818
github.com/stretchr/testify v1.11.1
@@ -42,7 +42,6 @@ require (
4242
github.com/subosito/gotenv v1.6.0 // indirect
4343
go.uber.org/atomic v1.11.0 // indirect
4444
go.uber.org/multierr v1.11.0 // indirect
45-
go.yaml.in/yaml/v2 v2.4.4 // indirect
4645
golang.org/x/sys v0.45.0 // indirect
4746
golang.org/x/text v0.37.0 // indirect
4847
google.golang.org/protobuf v1.36.11 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ github.com/prometheus/client_golang/exp v0.0.0-20260325093428-d8591d0db856 h1:1Y
126126
github.com/prometheus/client_golang/exp v0.0.0-20260325093428-d8591d0db856/go.mod h1:Vf0QcmVhGqpjLxZOaWrFSep86vchQtJmbztFaMM4f6Q=
127127
github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk=
128128
github.com/prometheus/client_model v0.6.2/go.mod h1:y3m2F6Gdpfy6Ut/GBsUqTWZqCUvMVzSfMLjcu6wAwpE=
129-
github.com/prometheus/common v0.67.5 h1:pIgK94WWlQt1WLwAC5j2ynLaBRDiinoAb86HZHTUGI4=
130-
github.com/prometheus/common v0.67.5/go.mod h1:SjE/0MzDEEAyrdr5Gqc6G+sXI67maCxzaT3A2+HqjUw=
129+
github.com/prometheus/common v0.68.1 h1:omjRRl4QP4komogpXuhfeOiisQg7xdy8VM1UY+pStaY=
130+
github.com/prometheus/common v0.68.1/go.mod h1:ZzL3f6u94qUxh9p+tJTrF+FvBS1XXbbRAZCQkytAL0Y=
131131
github.com/prometheus/otlptranslator v1.0.0 h1:s0LJW/iN9dkIH+EnhiD3BlkkP5QVIUVEoIwkU+A6qos=
132132
github.com/prometheus/otlptranslator v1.0.0/go.mod h1:vRYWnXvI6aWGpsdY/mOT/cbeVRBlPWtBNDb7kGR3uKM=
133133
github.com/prometheus/procfs v0.17.0 h1:FuLQ+05u4ZI+SS/w9+BWEM2TXiHKsUQ9TADiRH7DuK0=
@@ -143,8 +143,8 @@ github.com/rs/cors v1.11.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU
143143
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
144144
github.com/sagikazarmark/locafero v0.7.0 h1:5MqpDsTGNDhY8sGp0Aowyf0qKsPrhewaLSsFaodPcyo=
145145
github.com/sagikazarmark/locafero v0.7.0/go.mod h1:2za3Cg5rMaTMoG/2Ulr9AwtFaIppKXTRYnozin4aB5k=
146-
github.com/sapcc/go-bits v0.0.0-20260529151418-8d2b33444f03 h1:ni4+0WYad/128i2s3lrE2wOwzu1BkhZpWq9ZgTDsjCk=
147-
github.com/sapcc/go-bits v0.0.0-20260529151418-8d2b33444f03/go.mod h1:tlX0d8TvLgEikNWwFbB1SxnW0q/6XybpXjt8mr97Qzg=
146+
github.com/sapcc/go-bits v0.0.0-20260604095421-6bd206943957 h1:tK1d+oXV8NFh3H7i/6eiJ3umBhartFOwvwvsEYBt+tA=
147+
github.com/sapcc/go-bits v0.0.0-20260604095421-6bd206943957/go.mod h1:qYAoxEZGN777UFSBw7L6DtC2uUZHmkCcaWslToEnWD8=
148148
github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo=
149149
github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
150150
github.com/spf13/afero v1.12.0 h1:UcOPyRBYczmFn6yvphxkn9ZEOY65cpwGKb5mL36mrqs=

0 commit comments

Comments
 (0)