Skip to content

Commit 967e802

Browse files
chore(deps): update all non-major dependencies
1 parent 237ac81 commit 967e802

11 files changed

+110
-110
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: install go
19-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
19+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

.github/workflows/codeql-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
38+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939

4040
- name: install go
41-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
41+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
4242
with:
4343
# use version from go.mod file
4444
go-version-file: 'go.mod'
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Initializes the CodeQL tools for scanning.
4949
- name: Initialize CodeQL
50-
uses: github/codeql-action/init@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
50+
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
5151
with:
5252
languages: ${{ matrix.language }}
5353
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -58,7 +58,7 @@ jobs:
5858
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5959
# If this step fails, then you should remove it and run the build manually (see below)
6060
- name: Autobuild
61-
uses: github/codeql-action/autobuild@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
61+
uses: github/codeql-action/autobuild@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
6262

6363
# ℹ️ Command-line programs to run using the OS shell.
6464
# 📚 https://git.io/JvXDl
@@ -72,4 +72,4 @@ jobs:
7272
# make release
7373

7474
- name: Perform CodeQL Analysis
75-
uses: github/codeql-action/analyze@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
75+
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0

.github/workflows/integration-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040

4141
steps:
4242
- name: clone
43-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
43+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4444

4545
- name: install go
46-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
46+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
4747
with:
4848
# use version from go.mod file
4949
go-version-file: 'go.mod'
@@ -62,10 +62,10 @@ jobs:
6262

6363
steps:
6464
- name: clone
65-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
65+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6666

6767
- name: install go
68-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
68+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
6969
with:
7070
# use version from go.mod file
7171
go-version-file: 'go.mod'

.github/workflows/prerelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414

1515
steps:
1616
- name: clone
17-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
with:
1919
# ensures we fetch tag history for the repository
2020
fetch-depth: 0
2121

2222
- name: install go
23-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
23+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2424
with:
2525
# use version from go.mod file
2626
go-version-file: 'go.mod'

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
# ensures we fetch tag history for the repository
1919
fetch-depth: 0
2020

2121
- name: install go
22-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
22+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2323
with:
2424
# use version from go.mod file
2525
go-version-file: 'go.mod'

.github/workflows/reviewdog.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: clone
15-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

1717
- name: install go
18-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
18+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: 'go.mod'
@@ -36,10 +36,10 @@ jobs:
3636

3737
steps:
3838
- name: clone
39-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
39+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4040

4141
- name: install go
42-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
42+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
4343
with:
4444
# use version from go.mod file
4545
go-version-file: 'go.mod'

.github/workflows/spec.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: install go
19-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
19+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: install go
19-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
19+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

.github/workflows/validate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: install go
19-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
19+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: "go.mod"

go.mod

+27-27
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/DATA-DOG/go-sqlmock v1.5.2
88
github.com/Masterminds/semver/v3 v3.3.0
99
github.com/Masterminds/sprig/v3 v3.3.0
10-
github.com/adhocore/gronx v1.19.1
10+
github.com/adhocore/gronx v1.19.2
1111
github.com/alicebob/miniredis/v2 v2.33.0
1212
github.com/aws/aws-sdk-go v1.55.5
1313
github.com/buildkite/yaml v0.0.0-20181016232759-0caa5f0796e3
@@ -26,33 +26,33 @@ require (
2626
github.com/hashicorp/go-retryablehttp v0.7.7
2727
github.com/hashicorp/vault/api v1.15.0
2828
github.com/joho/godotenv v1.5.1
29-
github.com/lestrrat-go/jwx/v2 v2.1.1
29+
github.com/lestrrat-go/jwx/v2 v2.1.2
3030
github.com/lib/pq v1.10.9
3131
github.com/microcosm-cc/bluemonday v1.0.27
3232
github.com/pkg/errors v0.9.1
33-
github.com/prometheus/client_golang v1.20.4
34-
github.com/redis/go-redis/v9 v9.6.1
33+
github.com/prometheus/client_golang v1.20.5
34+
github.com/redis/go-redis/v9 v9.7.0
3535
github.com/sirupsen/logrus v1.9.3
3636
github.com/spf13/afero v1.11.0
3737
github.com/uptrace/opentelemetry-go-extra/otelgorm v0.3.2
38-
github.com/urfave/cli/v2 v2.27.4
39-
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.55.0
40-
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.55.0
41-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0
42-
go.opentelemetry.io/otel v1.30.0
43-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0
44-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0
45-
go.opentelemetry.io/otel/sdk v1.30.0
46-
go.opentelemetry.io/otel/trace v1.30.0
38+
github.com/urfave/cli/v2 v2.27.5
39+
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.56.0
40+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.56.0
41+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0
42+
go.opentelemetry.io/otel v1.31.0
43+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
44+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0
45+
go.opentelemetry.io/otel/sdk v1.31.0
46+
go.opentelemetry.io/otel/trace v1.31.0
4747
go.starlark.net v0.0.0-20240925182052-1207426daebd
48-
golang.org/x/crypto v0.27.0
48+
golang.org/x/crypto v0.28.0
4949
golang.org/x/oauth2 v0.23.0
5050
golang.org/x/sync v0.8.0
51-
golang.org/x/time v0.6.0
51+
golang.org/x/time v0.7.0
5252
gorm.io/driver/postgres v1.5.9
5353
gorm.io/driver/sqlite v1.5.6
5454
gorm.io/gorm v1.25.12
55-
k8s.io/apimachinery v0.31.1
55+
k8s.io/apimachinery v0.31.2
5656
)
5757

5858
require (
@@ -63,13 +63,13 @@ require (
6363
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
6464
github.com/aymerick/douceur v0.2.0 // indirect
6565
github.com/beorn7/perks v1.0.1 // indirect
66-
github.com/bytedance/sonic v1.12.2 // indirect
66+
github.com/bytedance/sonic v1.12.3 // indirect
6767
github.com/bytedance/sonic/loader v0.2.0 // indirect
6868
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
6969
github.com/cespare/xxhash/v2 v2.3.0 // indirect
7070
github.com/cloudwego/base64x v0.1.4 // indirect
7171
github.com/cloudwego/iasm v0.2.0 // indirect
72-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
72+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
7373
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
7474
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
7575
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -137,16 +137,16 @@ require (
137137
github.com/x448/float16 v0.8.4 // indirect
138138
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
139139
github.com/yuin/gopher-lua v1.1.1 // indirect
140-
go.opentelemetry.io/otel/metric v1.30.0 // indirect
140+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
141141
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
142-
golang.org/x/arch v0.10.0 // indirect
143-
golang.org/x/net v0.29.0 // indirect
144-
golang.org/x/sys v0.25.0 // indirect
145-
golang.org/x/text v0.18.0 // indirect
146-
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
147-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
148-
google.golang.org/grpc v1.66.1 // indirect
149-
google.golang.org/protobuf v1.34.2 // indirect
142+
golang.org/x/arch v0.11.0 // indirect
143+
golang.org/x/net v0.30.0 // indirect
144+
golang.org/x/sys v0.26.0 // indirect
145+
golang.org/x/text v0.19.0 // indirect
146+
google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect
147+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect
148+
google.golang.org/grpc v1.67.1 // indirect
149+
google.golang.org/protobuf v1.35.1 // indirect
150150
gopkg.in/yaml.v2 v2.4.0 // indirect
151151
gopkg.in/yaml.v3 v3.0.1 // indirect
152152
k8s.io/klog/v2 v2.130.1 // indirect

0 commit comments

Comments
 (0)