Skip to content

Commit 8e0e501

Browse files
fix(deps): update all non-major dependencies
1 parent a32db6a commit 8e0e501

File tree

5 files changed

+74
-63
lines changed

5 files changed

+74
-63
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
# Initializes the CodeQL tools for scanning.
5757
- name: Initialize CodeQL
58-
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
58+
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
5959
with:
6060
languages: ${{ matrix.language }}
6161
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
6666
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6767
# If this step fails, then you should remove it and run the build manually (see below)
6868
- name: Autobuild
69-
uses: github/codeql-action/autobuild@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
69+
uses: github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
7070

7171
# ℹ️ Command-line programs to run using the OS shell.
7272
# 📚 https://git.io/JvXDl
@@ -80,4 +80,4 @@ jobs:
8080
# make release
8181

8282
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
83+
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5

.github/workflows/spec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
sudo make spec
4040
4141
- name: upload api spec
42-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
42+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
4343
with:
4444
retries: 3
4545
script: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
make test
3636
3737
- name: coverage
38-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
38+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
3939
with:
4040
use_oidc: true
4141
files: coverage.out

go.mod

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ go 1.24.4
55
require (
66
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/distribution/reference v0.6.0
8-
github.com/docker/docker v28.3.3+incompatible
8+
github.com/docker/docker v28.4.0+incompatible
99
github.com/docker/go-units v0.5.0
10-
github.com/gin-gonic/gin v1.10.1
10+
github.com/gin-gonic/gin v1.11.0
1111
github.com/go-vela/sdk-go v0.27.1
12-
github.com/go-vela/server v0.27.1
12+
github.com/go-vela/server v0.27.2
1313
github.com/golang-jwt/jwt/v5 v5.3.0
1414
github.com/google/go-cmp v0.7.0
1515
github.com/joho/godotenv v1.5.1
1616
github.com/opencontainers/image-spec v1.1.1
17-
github.com/prometheus/client_golang v1.23.0
17+
github.com/prometheus/client_golang v1.23.2
1818
github.com/sirupsen/logrus v1.9.3
1919
github.com/urfave/cli/v3 v3.4.1
20-
golang.org/x/sync v0.16.0
20+
golang.org/x/sync v0.17.0
2121
gotest.tools/v3 v3.5.2
22-
k8s.io/api v0.34.0
23-
k8s.io/apimachinery v0.34.0
24-
k8s.io/client-go v0.34.0
22+
k8s.io/api v0.34.1
23+
k8s.io/apimachinery v0.34.1
24+
k8s.io/client-go v0.34.1
2525
sigs.k8s.io/yaml v1.6.0
2626
)
2727

@@ -37,6 +37,7 @@ require (
3737
github.com/containerd/errdefs/pkg v0.3.0 // indirect
3838
github.com/expr-lang/expr v1.17.6 // indirect
3939
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
40+
github.com/goccy/go-yaml v1.18.0 // indirect
4041
github.com/google/go-github/v74 v74.0.0 // indirect
4142
github.com/gorilla/css v1.0.1 // indirect
4243
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
@@ -55,6 +56,8 @@ require (
5556
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
5657
github.com/moby/sys/atomicwriter v0.1.0 // indirect
5758
github.com/pmezard/go-difflib v1.0.0 // indirect
59+
github.com/quic-go/qpack v0.5.1 // indirect
60+
github.com/quic-go/quic-go v0.54.0 // indirect
5861
github.com/uptrace/opentelemetry-go-extra/otelgorm v0.3.2 // indirect
5962
github.com/uptrace/opentelemetry-go-extra/otelsql v0.3.2 // indirect
6063
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
@@ -65,8 +68,11 @@ require (
6568
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.37.0 // indirect
6669
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
6770
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
71+
go.uber.org/mock v0.5.0 // indirect
6872
go.yaml.in/yaml/v2 v2.4.2 // indirect
6973
go.yaml.in/yaml/v3 v3.0.4 // indirect
74+
golang.org/x/mod v0.26.0 // indirect
75+
golang.org/x/tools v0.35.0 // indirect
7076
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
7177
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
7278
google.golang.org/grpc v1.73.0 // indirect
@@ -86,10 +92,10 @@ require (
8692
github.com/alicebob/miniredis/v2 v2.35.0 // indirect
8793
github.com/beorn7/perks v1.0.1 // indirect
8894
github.com/buildkite/yaml v0.0.0-20230306222819-0e4e032d4835 // indirect
89-
github.com/bytedance/sonic v1.13.3 // indirect
90-
github.com/bytedance/sonic/loader v0.2.4 // indirect
95+
github.com/bytedance/sonic v1.14.0 // indirect
96+
github.com/bytedance/sonic/loader v0.3.0 // indirect
9197
github.com/cespare/xxhash/v2 v2.3.0 // indirect
92-
github.com/cloudwego/base64x v0.1.5 // indirect
98+
github.com/cloudwego/base64x v0.1.6 // indirect
9399
github.com/containerd/log v0.1.0 // indirect
94100
github.com/coreos/go-semver v0.3.1 // indirect
95101
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -109,7 +115,7 @@ require (
109115
github.com/go-openapi/swag v0.23.0 // indirect
110116
github.com/go-playground/locales v0.14.1 // indirect
111117
github.com/go-playground/universal-translator v0.18.1 // indirect
112-
github.com/go-playground/validator/v10 v10.26.0 // indirect
118+
github.com/go-playground/validator/v10 v10.27.0 // indirect
113119
github.com/goccy/go-json v0.10.5 // indirect
114120
github.com/gogo/protobuf v1.3.2 // indirect
115121
github.com/google/gnostic-models v0.7.0 // indirect
@@ -124,7 +130,7 @@ require (
124130
github.com/huandu/xstrings v1.5.0 // indirect
125131
github.com/josharian/intern v1.0.0 // indirect
126132
github.com/json-iterator/go v1.1.12 // indirect
127-
github.com/klauspost/cpuid/v2 v2.2.11 // indirect
133+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
128134
github.com/leodido/go-urn v1.4.0 // indirect
129135
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
130136
github.com/lestrrat-go/httpcc v1.0.1 // indirect
@@ -143,7 +149,7 @@ require (
143149
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
144150
github.com/pkg/errors v0.9.1 // indirect
145151
github.com/prometheus/client_model v0.6.2 // indirect
146-
github.com/prometheus/common v0.65.0 // indirect
152+
github.com/prometheus/common v0.66.1 // indirect
147153
github.com/prometheus/procfs v0.16.1 // indirect
148154
github.com/redis/go-redis/v9 v9.12.1 // indirect
149155
github.com/segmentio/asm v1.2.0 // indirect
@@ -159,15 +165,15 @@ require (
159165
go.opentelemetry.io/otel/metric v1.37.0 // indirect
160166
go.opentelemetry.io/otel/trace v1.37.0 // indirect
161167
go.starlark.net v0.0.0-20250826212936-2a4f36945129 // indirect
162-
golang.org/x/arch v0.18.0 // indirect
168+
golang.org/x/arch v0.20.0 // indirect
163169
golang.org/x/crypto v0.41.0 // indirect
164-
golang.org/x/net v0.42.0 // indirect
170+
golang.org/x/net v0.43.0 // indirect
165171
golang.org/x/oauth2 v0.30.0 // indirect
166172
golang.org/x/sys v0.35.0 // indirect
167173
golang.org/x/term v0.34.0 // indirect
168174
golang.org/x/text v0.28.0 // indirect
169175
golang.org/x/time v0.12.0 // indirect
170-
google.golang.org/protobuf v1.36.6 // indirect
176+
google.golang.org/protobuf v1.36.9 // indirect
171177
gopkg.in/inf.v0 v0.9.1 // indirect
172178
gopkg.in/yaml.v2 v2.4.0 // indirect
173179
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)