Skip to content

Commit c9f0e4f

Browse files
fix(deps): update all non-major dependencies (#622)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7db0311 commit c9f0e4f

File tree

6 files changed

+72
-72
lines changed

6 files changed

+72
-72
lines changed

.github/workflows/codeql-analysis.yml

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

4848
# Initializes the CodeQL tools for scanning.
4949
- name: Initialize CodeQL
50-
uses: github/codeql-action/init@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 # v3.28.4
50+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
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@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 # v3.28.4
61+
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
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@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 # v3.28.4
75+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
go test -covermode=atomic -coverprofile=coverage.out ./...
2929
3030
- name: coverage
31-
uses: codecov/codecov-action@0da7aa657d958d32c117fc47e1f977e7524753c7 # v5.3.0
31+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
3232
with:
3333
token: ${{ secrets.CODECOV_TOKEN }}
3434
file: coverage.out

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22

3-
FROM alpine:3.21.2@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099 as certs
3+
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c as certs
44

55
RUN apk add --update --no-cache ca-certificates
66

Dockerfile-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22

3-
FROM alpine:3.21.2@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
3+
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
44

55
RUN apk add --update --no-cache ca-certificates
66

go.mod

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ require (
88
github.com/docker/docker v27.5.1+incompatible
99
github.com/docker/go-units v0.5.0
1010
github.com/gin-gonic/gin v1.10.0
11-
github.com/go-vela/sdk-go v0.26.0
12-
github.com/go-vela/server v0.26.0
11+
github.com/go-vela/sdk-go v0.26.1
12+
github.com/go-vela/server v0.26.2
1313
github.com/golang-jwt/jwt/v5 v5.2.1
14-
github.com/google/go-cmp v0.6.0
14+
github.com/google/go-cmp v0.7.0
1515
github.com/joho/godotenv v1.5.1
16-
github.com/opencontainers/image-spec v1.1.0
17-
github.com/prometheus/client_golang v1.20.5
16+
github.com/opencontainers/image-spec v1.1.1
17+
github.com/prometheus/client_golang v1.21.1
1818
github.com/sirupsen/logrus v1.9.3
19-
github.com/urfave/cli/v2 v2.27.5
20-
golang.org/x/sync v0.10.0
21-
gotest.tools/v3 v3.5.1
22-
k8s.io/api v0.32.1
23-
k8s.io/apimachinery v0.32.1
24-
k8s.io/client-go v0.32.1
19+
github.com/urfave/cli/v2 v2.27.6
20+
golang.org/x/sync v0.12.0
21+
gotest.tools/v3 v3.5.2
22+
k8s.io/api v0.32.2
23+
k8s.io/apimachinery v0.32.2
24+
k8s.io/client-go v0.32.2
2525
sigs.k8s.io/yaml v1.4.0
2626
)
2727

@@ -33,7 +33,7 @@ require (
3333
github.com/buger/jsonparser v1.1.1 // indirect
3434
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3535
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
36-
github.com/google/go-github/v68 v68.0.0 // indirect
36+
github.com/google/go-github/v69 v69.2.0 // indirect
3737
github.com/gorilla/css v1.0.1 // indirect
3838
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
3939
github.com/invopop/jsonschema v0.13.0 // indirect
@@ -43,7 +43,7 @@ require (
4343
github.com/jackc/puddle/v2 v2.2.1 // indirect
4444
github.com/jinzhu/inflection v1.0.0 // indirect
4545
github.com/jinzhu/now v1.1.5 // indirect
46-
github.com/klauspost/compress v1.17.9 // indirect
46+
github.com/klauspost/compress v1.17.11 // indirect
4747
github.com/lib/pq v1.10.9 // indirect
4848
github.com/mattn/go-sqlite3 v1.14.22 // indirect
4949
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
@@ -140,9 +140,9 @@ require (
140140
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
141141
github.com/pkg/errors v0.9.1 // indirect
142142
github.com/prometheus/client_model v0.6.1 // indirect
143-
github.com/prometheus/common v0.55.0 // indirect
143+
github.com/prometheus/common v0.62.0 // indirect
144144
github.com/prometheus/procfs v0.15.1 // indirect
145-
github.com/redis/go-redis/v9 v9.7.0 // indirect
145+
github.com/redis/go-redis/v9 v9.7.1 // indirect
146146
github.com/russross/blackfriday/v2 v2.1.0 // indirect
147147
github.com/segmentio/asm v1.2.0 // indirect
148148
github.com/shopspring/decimal v1.4.0 // indirect
@@ -157,16 +157,16 @@ require (
157157
go.opentelemetry.io/otel v1.34.0 // indirect
158158
go.opentelemetry.io/otel/metric v1.34.0 // indirect
159159
go.opentelemetry.io/otel/trace v1.34.0 // indirect
160-
go.starlark.net v0.0.0-20241226192728-8dfa5b98479f // indirect
160+
go.starlark.net v0.0.0-20250205221240-492d3672b3f4 // indirect
161161
golang.org/x/arch v0.13.0 // indirect
162-
golang.org/x/crypto v0.32.0 // indirect
162+
golang.org/x/crypto v0.34.0 // indirect
163163
golang.org/x/mod v0.21.0 // indirect
164164
golang.org/x/net v0.34.0 // indirect
165-
golang.org/x/oauth2 v0.25.0 // indirect
166-
golang.org/x/sys v0.29.0 // indirect
167-
golang.org/x/term v0.28.0 // indirect
168-
golang.org/x/text v0.21.0 // indirect
169-
golang.org/x/time v0.9.0 // indirect
165+
golang.org/x/oauth2 v0.26.0 // indirect
166+
golang.org/x/sys v0.30.0 // indirect
167+
golang.org/x/term v0.29.0 // indirect
168+
golang.org/x/text v0.22.0 // indirect
169+
golang.org/x/time v0.10.0 // indirect
170170
golang.org/x/tools v0.26.0 // indirect
171171
google.golang.org/protobuf v1.36.3 // indirect
172172
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)