Skip to content

Commit 467ca38

Browse files
fix(deps): update all non-major dependencies
1 parent a35a2c5 commit 467ca38

File tree

11 files changed

+78
-67
lines changed

11 files changed

+78
-67
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: clone
23-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2424

2525
- name: install go
2626
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
46+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4747

4848
- name: install go
4949
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
@@ -55,7 +55,7 @@ jobs:
5555

5656
# Initializes the CodeQL tools for scanning.
5757
- name: Initialize CodeQL
58-
uses: github/codeql-action/init@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
58+
uses: github/codeql-action/init@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
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@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
69+
uses: github/codeql-action/autobuild@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
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@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
83+
uses: github/codeql-action/analyze@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4

.github/workflows/prerelease.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: clone
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2323
with:
2424
# ensures we fetch tag history for the repository
2525
fetch-depth: 0
@@ -36,7 +36,7 @@ jobs:
3636
run: ./release.sh
3737

3838
- name: upload binaries
39-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
39+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
4040
with:
4141
retries: 3
4242
script: |
@@ -81,14 +81,14 @@ jobs:
8181
}
8282
8383
- name: login to dockerhub
84-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
84+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
8585
with:
8686
username: ${{ secrets.DOCKER_USERNAME }}
8787
password: ${{ secrets.DOCKER_PASSWORD }}
8888

8989
- name: extract metadata
9090
id: meta
91-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
91+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
9292
with:
9393
images: target/vela-cli
9494
tags: |

.github/workflows/publish.yml

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

1717
steps:
1818
- name: clone
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2020
with:
2121
# ensures we fetch tag history for the repository
2222
fetch-depth: 0
@@ -33,14 +33,14 @@ jobs:
3333
run: ./release.sh
3434

3535
- name: login to dockerhub
36-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
36+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
3737
with:
3838
username: ${{ secrets.DOCKER_USERNAME }}
3939
password: ${{ secrets.DOCKER_PASSWORD }}
4040

4141
- name: extract metadata
4242
id: meta
43-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
43+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
4444
with:
4545
images: target/vela-cli
4646
tags: |

.github/workflows/reviewdog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: clone
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2323

2424
- name: install go
2525
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: clone
50-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
50+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
5151

5252
- name: install go
5353
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: clone
23-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2424
- name: install go
2525
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2626
with:
@@ -34,7 +34,7 @@ jobs:
3434
make test
3535
3636
- name: coverage
37-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
37+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
3838
with:
3939
use_oidc: true
4040
files: coverage.out

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: clone
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2020

2121
- name: install go
2222
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0

command/pipeline/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ var CommandExec = &cli.Command{
179179
Sources: cli.EnvVars("VELA_CLONE_IMAGE", "COMPILER_CLONE_IMAGE"),
180180
Name: "clone-image",
181181
Usage: "the clone image to use for the injected clone step",
182-
Value: "docker.io/target/vela-git-slim:v0.12.1@sha256:93cdb399e0a3150addac494198473c464c978ca055121593607097b75480192b", // renovate: container
182+
Value: "docker.io/target/vela-git-slim:v0.13.0@sha256:395bb1df81970117f4547c32f80632950f91e1bad38bc6a8e5015fbe3b1fae24", // renovate: container
183183
},
184184
&cli.StringFlag{
185185
Sources: cli.EnvVars("VELA_OUTPUTS_IMAGE", "EXECUTOR_OUTPUTS_IMAGE"),

command/pipeline/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ var CommandValidate = &cli.Command{
178178
Sources: cli.EnvVars("VELA_CLONE_IMAGE", "COMPILER_CLONE_IMAGE"),
179179
Name: "clone-image",
180180
Usage: "the clone image to use for the injected clone step",
181-
Value: "docker.io/target/vela-git-slim:v0.12.1@sha256:93cdb399e0a3150addac494198473c464c978ca055121593607097b75480192b", // renovate: container
181+
Value: "docker.io/target/vela-git-slim:v0.13.0@sha256:395bb1df81970117f4547c32f80632950f91e1bad38bc6a8e5015fbe3b1fae24", // renovate: container
182182
Category: "4. Compiler:",
183183
},
184184
},

go.mod

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ go 1.24.4
44

55
require (
66
github.com/Masterminds/semver/v3 v3.4.0
7-
github.com/alecthomas/chroma/v2 v2.19.0
7+
github.com/alecthomas/chroma/v2 v2.20.0
88
github.com/chainguard-dev/git-urls v1.0.2
99
github.com/cli/browser v1.3.0
1010
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
1111
github.com/dustin/go-humanize v1.0.1
12-
github.com/gin-gonic/gin v1.10.1
12+
github.com/gin-gonic/gin v1.11.0
1313
github.com/go-git/go-git/v5 v5.16.2
1414
github.com/go-vela/sdk-go v0.27.1
15-
github.com/go-vela/server v0.27.1
15+
github.com/go-vela/server v0.27.2
1616
github.com/go-vela/worker v0.27.2
1717
github.com/golang-jwt/jwt/v5 v5.3.0
1818
github.com/gosuri/uitable v0.0.4
1919
github.com/joho/godotenv v1.5.1
2020
github.com/manifoldco/promptui v0.9.0
2121
github.com/sirupsen/logrus v1.9.3
22-
github.com/spf13/afero v1.14.0
22+
github.com/spf13/afero v1.15.0
2323
github.com/urfave/cli-docs/v3 v3.0.0-alpha6
2424
github.com/urfave/cli/v3 v3.4.1
2525
go.yaml.in/yaml/v3 v3.0.4
26-
golang.org/x/term v0.34.0
26+
golang.org/x/term v0.35.0
2727
)
2828

2929
require (
@@ -39,12 +39,12 @@ require (
3939
github.com/bahlo/generic-list-go v0.2.0 // indirect
4040
github.com/buger/jsonparser v1.1.1 // indirect
4141
github.com/buildkite/yaml v0.0.0-20230306222819-0e4e032d4835 // indirect
42-
github.com/bytedance/sonic v1.13.3 // indirect
43-
github.com/bytedance/sonic/loader v0.2.4 // indirect
42+
github.com/bytedance/sonic v1.14.0 // indirect
43+
github.com/bytedance/sonic/loader v0.3.0 // indirect
4444
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
4545
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
4646
github.com/cloudflare/circl v1.6.1 // indirect
47-
github.com/cloudwego/base64x v0.1.5 // indirect
47+
github.com/cloudwego/base64x v0.1.6 // indirect
4848
github.com/containerd/containerd/v2 v2.1.3 // indirect
4949
github.com/containerd/errdefs v1.0.0 // indirect
5050
github.com/containerd/errdefs/pkg v0.3.0 // indirect
@@ -77,8 +77,9 @@ require (
7777
github.com/go-openapi/swag v0.23.0 // indirect
7878
github.com/go-playground/locales v0.14.1 // indirect
7979
github.com/go-playground/universal-translator v0.18.1 // indirect
80-
github.com/go-playground/validator/v10 v10.26.0 // indirect
80+
github.com/go-playground/validator/v10 v10.27.0 // indirect
8181
github.com/goccy/go-json v0.10.5 // indirect
82+
github.com/goccy/go-yaml v1.18.0 // indirect
8283
github.com/gogo/protobuf v1.3.2 // indirect
8384
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
8485
github.com/google/gnostic-models v0.7.0 // indirect
@@ -106,7 +107,7 @@ require (
106107
github.com/josharian/intern v1.0.0 // indirect
107108
github.com/json-iterator/go v1.1.12 // indirect
108109
github.com/kevinburke/ssh_config v1.2.0 // indirect
109-
github.com/klauspost/cpuid/v2 v2.2.11 // indirect
110+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
110111
github.com/leodido/go-urn v1.4.0 // indirect
111112
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
112113
github.com/lestrrat-go/httpcc v1.0.1 // indirect
@@ -133,6 +134,8 @@ require (
133134
github.com/pjbgf/sha1cd v0.3.2 // indirect
134135
github.com/pkg/errors v0.9.1 // indirect
135136
github.com/pmezard/go-difflib v1.0.0 // indirect
137+
github.com/quic-go/qpack v0.5.1 // indirect
138+
github.com/quic-go/quic-go v0.54.0 // indirect
136139
github.com/rivo/uniseg v0.2.0 // indirect
137140
github.com/russross/blackfriday/v2 v2.1.0 // indirect
138141
github.com/segmentio/asm v1.2.0 // indirect
@@ -159,19 +162,22 @@ require (
159162
go.opentelemetry.io/otel/trace v1.37.0 // indirect
160163
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
161164
go.starlark.net v0.0.0-20250826212936-2a4f36945129 // indirect
165+
go.uber.org/mock v0.5.0 // indirect
162166
go.yaml.in/yaml/v2 v2.4.2 // indirect
163-
golang.org/x/arch v0.18.0 // indirect
167+
golang.org/x/arch v0.20.0 // indirect
164168
golang.org/x/crypto v0.41.0 // indirect
169+
golang.org/x/mod v0.26.0 // indirect
165170
golang.org/x/net v0.42.0 // indirect
166171
golang.org/x/oauth2 v0.30.0 // indirect
167172
golang.org/x/sync v0.16.0 // indirect
168-
golang.org/x/sys v0.35.0 // indirect
173+
golang.org/x/sys v0.36.0 // indirect
169174
golang.org/x/text v0.28.0 // indirect
170175
golang.org/x/time v0.12.0 // indirect
176+
golang.org/x/tools v0.35.0 // indirect
171177
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
172178
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
173179
google.golang.org/grpc v1.73.0 // indirect
174-
google.golang.org/protobuf v1.36.6 // indirect
180+
google.golang.org/protobuf v1.36.9 // indirect
175181
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
176182
gopkg.in/inf.v0 v0.9.1 // indirect
177183
gopkg.in/warnings.v0 v0.1.2 // indirect

0 commit comments

Comments
 (0)