Skip to content

Commit a104529

Browse files
fix(deps): update all patch and minor (#977)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 470839e commit a104529

6 files changed

Lines changed: 145 additions & 139 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@ jobs:
2222
fetch-depth: 0
2323

2424
- name: Set up QEMU
25-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
25+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
28+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
2929

3030
- name: docker.io Login
31-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
31+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
3232
with:
3333
registry: docker.io
3434
username: ${{ github.repository_owner }}
3535
password: ${{ secrets.DOCKER_HUB_TOKEN }}
3636

3737
- name: ghcr.io login
38-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
38+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.repository_owner }}
4242
password: ${{ secrets.GH_PAT }}
4343

4444
- name: quay.io Login
45-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
45+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
4646
with:
4747
registry: quay.io
4848
username: ${{ github.repository_owner }}
@@ -52,18 +52,18 @@ jobs:
5252
uses: samuelmeuli/action-snapcraft@fceeb3c308e76f3487e72ef608618de625fb7fe8 # v3
5353

5454
- name: Set up Go
55-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
55+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
5656
with:
57-
go-version: '1.22'
57+
go-version: '1.24'
5858

5959
- name: Import GPG key
60-
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6
60+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6
6161
with:
6262
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
6363
passphrase: ${{ secrets.GPG_PASSPHRASE }}
6464

6565
- name: Install goreleaser
66-
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6
66+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6
6767
with:
6868
version: v1.24.0
6969
install-only: true

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2828

2929
- name: Install Go
30-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
30+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
3131
with:
32-
go-version: '1.23'
32+
go-version: '1.24'
3333

3434
- name: Lint
3535
if: ${{ matrix.os == 'ubuntu-24.04' }}
@@ -39,7 +39,7 @@ jobs:
3939
run: make test
4040

4141
- name: Publish coverage to coveralls.io
42-
uses: shogo82148/actions-goveralls@785c9d68212c91196d3994652647f8721918ba11 # v1
42+
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1
4343
if: ${{ matrix.os == 'ubuntu-24.04' }}
4444
with:
4545
path-to-profile: coverage.out

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# BUILD CONTAINER
33
##
44

5-
FROM alpine:3.21@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45 as certs
5+
FROM alpine:3.22@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715 as certs
66

77
RUN \
88
apk add --no-cache ca-certificates
@@ -11,7 +11,7 @@ apk add --no-cache ca-certificates
1111
# RELEASE CONTAINER
1212
##
1313

14-
FROM busybox:1.37-glibc@sha256:c598938e58d0efcc5a01efe9059d113f22970914e05e39ab2a597a10f9db9bdc
14+
FROM busybox:1.37-glibc@sha256:210ce53959959e79523b8cb0f0bb1cf1c49bf9747cdedb47db1cf0db8e642f61
1515

1616
WORKDIR /
1717

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ GOLANG_VERSION := 1.23
77

88
.PHONY: fmt
99
fmt: ## Format source code
10-
go run mvdan.cc/gofumpt@v0.7.0 -w $(shell git ls-files **/*.go)
11-
go run github.com/daixiang0/gci@v0.13.5 write -s standard -s default -s "prefix(github.com/mvisonneau)" .
10+
go run mvdan.cc/gofumpt@v0.8.0 -w $(shell git ls-files **/*.go)
11+
go run github.com/daixiang0/gci@v0.13.6 write -s standard -s default -s "prefix(github.com/mvisonneau)" .
1212

1313
.PHONY: lint
1414
lint: ## Run all lint related tests upon the codebase
15-
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2 run -v --fast
15+
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.8 run -v --fast
1616

1717
.PHONY: test
1818
test: ## Run the tests against the codebase

go.mod

Lines changed: 42 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,61 @@ module github.com/mvisonneau/gitlab-ci-pipelines-exporter
22

33
go 1.23.0
44

5-
toolchain go1.23.4
5+
toolchain go1.24.4
66

77
require (
8-
dario.cat/mergo v1.0.1
9-
github.com/alicebob/miniredis/v2 v2.34.0
10-
github.com/charmbracelet/bubbles v0.20.0
11-
github.com/charmbracelet/bubbletea v1.2.4
12-
github.com/charmbracelet/lipgloss v1.0.0
8+
dario.cat/mergo v1.0.2
9+
github.com/alicebob/miniredis/v2 v2.35.0
10+
github.com/charmbracelet/bubbles v0.21.0
11+
github.com/charmbracelet/bubbletea v1.3.5
12+
github.com/charmbracelet/lipgloss v1.1.0
1313
github.com/creasty/defaults v1.8.0
1414
github.com/go-logr/stdr v1.2.2
15-
github.com/go-playground/validator/v10 v10.24.0
15+
github.com/go-playground/validator/v10 v10.26.0
1616
github.com/go-redis/redis_rate/v10 v10.0.1
1717
github.com/google/uuid v1.6.0
1818
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
1919
github.com/mvisonneau/go-helpers v0.0.1
2020
github.com/paulbellamy/ratecounter v0.2.0
2121
github.com/pkg/errors v0.9.1
22-
github.com/prometheus/client_golang v1.20.5
23-
github.com/redis/go-redis/extra/redisotel/v9 v9.7.0
24-
github.com/redis/go-redis/v9 v9.7.3
22+
github.com/prometheus/client_golang v1.22.0
23+
github.com/redis/go-redis/extra/redisotel/v9 v9.10.0
24+
github.com/redis/go-redis/v9 v9.10.0
2525
github.com/sirupsen/logrus v1.9.3
2626
github.com/stretchr/testify v1.10.0
2727
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.3.2
28-
github.com/urfave/cli/v2 v2.27.5
28+
github.com/urfave/cli/v2 v2.27.6
2929
github.com/vmihailenco/msgpack/v5 v5.4.1
3030
github.com/vmihailenco/taskq/memqueue/v4 v4.0.0-beta.4
3131
github.com/vmihailenco/taskq/redisq/v4 v4.0.0-beta.4
3232
github.com/vmihailenco/taskq/v4 v4.0.0-beta.4
3333
github.com/xanzy/go-gitlab v0.115.0
3434
github.com/xeonx/timeago v1.0.0-rc5
3535
go.openly.dev/pointy v1.3.0
36-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0
37-
go.opentelemetry.io/otel v1.33.0
38-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0
39-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0
40-
go.opentelemetry.io/otel/sdk v1.33.0
41-
go.opentelemetry.io/otel/trace v1.33.0
42-
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8
43-
golang.org/x/mod v0.22.0
44-
golang.org/x/time v0.9.0
45-
google.golang.org/grpc v1.69.4
46-
google.golang.org/protobuf v1.36.2
36+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
37+
go.opentelemetry.io/otel v1.36.0
38+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.36.0
39+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.36.0
40+
go.opentelemetry.io/otel/sdk v1.36.0
41+
go.opentelemetry.io/otel/trace v1.36.0
42+
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476
43+
golang.org/x/mod v0.25.0
44+
golang.org/x/time v0.12.0
45+
google.golang.org/grpc v1.73.0
46+
google.golang.org/protobuf v1.36.6
4747
gopkg.in/yaml.v3 v3.0.1
4848
)
4949

5050
require (
51-
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect
5251
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
5352
github.com/beorn7/perks v1.0.1 // indirect
5453
github.com/bsm/redislock v0.9.4 // indirect
55-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
54+
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
5655
github.com/cespare/xxhash/v2 v2.3.0 // indirect
56+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
5757
github.com/charmbracelet/harmonica v0.2.0 // indirect
58-
github.com/charmbracelet/x/ansi v0.6.0 // indirect
58+
github.com/charmbracelet/x/ansi v0.8.0 // indirect
59+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
5960
github.com/charmbracelet/x/term v0.2.1 // indirect
6061
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
6162
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -68,42 +69,43 @@ require (
6869
github.com/go-playground/locales v0.14.1 // indirect
6970
github.com/go-playground/universal-translator v0.18.1 // indirect
7071
github.com/google/go-querystring v1.1.0 // indirect
71-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
72+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
7273
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
7374
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
7475
github.com/hashicorp/golang-lru v1.0.2 // indirect
75-
github.com/klauspost/compress v1.17.11 // indirect
76+
github.com/klauspost/compress v1.18.0 // indirect
7677
github.com/leodido/go-urn v1.4.0 // indirect
7778
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
7879
github.com/mattn/go-isatty v0.0.20 // indirect
7980
github.com/mattn/go-localereader v0.0.1 // indirect
8081
github.com/mattn/go-runewidth v0.0.16 // indirect
8182
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
8283
github.com/muesli/cancelreader v0.2.2 // indirect
83-
github.com/muesli/termenv v0.15.2 // indirect
84+
github.com/muesli/termenv v0.16.0 // indirect
8485
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8586
github.com/pmezard/go-difflib v1.0.0 // indirect
8687
github.com/prometheus/client_model v0.6.1 // indirect
87-
github.com/prometheus/common v0.61.0 // indirect
88+
github.com/prometheus/common v0.62.0 // indirect
8889
github.com/prometheus/procfs v0.15.1 // indirect
89-
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.0 // indirect
90+
github.com/redis/go-redis/extra/rediscmd/v9 v9.10.0 // indirect
9091
github.com/rivo/uniseg v0.4.7 // indirect
9192
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9293
github.com/uptrace/opentelemetry-go-extra/otelutil v0.3.2 // indirect
9394
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
95+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
9496
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
9597
github.com/yuin/gopher-lua v1.1.1 // indirect
9698
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9799
go.opentelemetry.io/otel/log v0.9.0 // indirect
98-
go.opentelemetry.io/otel/metric v1.33.0 // indirect
99-
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
100-
golang.org/x/crypto v0.35.0 // indirect
101-
golang.org/x/net v0.36.0 // indirect
102-
golang.org/x/oauth2 v0.25.0 // indirect
103-
golang.org/x/sync v0.11.0 // indirect
104-
golang.org/x/sys v0.30.0 // indirect
105-
golang.org/x/text v0.22.0 // indirect
106-
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
107-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect
100+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
101+
go.opentelemetry.io/proto/otlp v1.6.0 // indirect
102+
golang.org/x/crypto v0.38.0 // indirect
103+
golang.org/x/net v0.40.0 // indirect
104+
golang.org/x/oauth2 v0.28.0 // indirect
105+
golang.org/x/sync v0.15.0 // indirect
106+
golang.org/x/sys v0.33.0 // indirect
107+
golang.org/x/text v0.25.0 // indirect
108+
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
109+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect
108110
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
109111
)

0 commit comments

Comments
 (0)