Skip to content

Commit dae0853

Browse files
renovate[bot]TimHuynh
and
TimHuynh
authored
chore(deps): update all non-major dependencies (#518)
* chore(deps): update all non-major dependencies * upgrade to v23 rc1 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: TimHuynh <[email protected]>
1 parent 051ca4b commit dae0853

File tree

6 files changed

+89
-90
lines changed

6 files changed

+89
-90
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3
42+
uses: github/codeql-action/init@b7bf0a3ed3ecfa44160715d7c442788f65f0f923 # v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3
53+
uses: github/codeql-action/autobuild@b7bf0a3ed3ecfa44160715d7c442788f65f0f923 # v3
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3
67+
uses: github/codeql-action/analyze@b7bf0a3ed3ecfa44160715d7c442788f65f0f923 # v3

.github/workflows/reviewdog.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
check-latest: true
2424

2525
- name: golangci-lint
26-
uses: reviewdog/action-golangci-lint@94d61e3205b61acf4ddabfeb13c5f8a13eb4167b # v2
26+
uses: reviewdog/action-golangci-lint@8e1117c7d327bbfb1eb7ec8dc2d895d13e6e17c3 # v2
2727
with:
2828
github_token: ${{ secrets.github_token }}
2929
golangci_lint_flags: "--config=.golangci.yml --timeout=5m"
@@ -47,7 +47,7 @@ jobs:
4747
check-latest: true
4848

4949
- name: golangci-lint
50-
uses: reviewdog/action-golangci-lint@94d61e3205b61acf4ddabfeb13c5f8a13eb4167b # v2
50+
uses: reviewdog/action-golangci-lint@8e1117c7d327bbfb1eb7ec8dc2d895d13e6e17c3 # v2
5151
with:
5252
github_token: ${{ secrets.github_token }}
5353
golangci_lint_flags: "--config=.golangci.yml --timeout=5m"

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
go test -race -covermode=atomic -coverprofile=coverage.out ./...
3232
3333
- name: coverage
34-
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
34+
uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
3535
with:
3636
token: ${{ secrets.CODECOV_TOKEN }}
3737
file: coverage.out

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# docker build -t target/vela-cli:latest . #
55
#################################################
66

7-
FROM alpine:3.19.0@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
7+
FROM alpine:3.19.1@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
88

99
RUN apk add --update --no-cache ca-certificates
1010

go.mod

+26-26
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ require (
1010
github.com/dustin/go-humanize v1.0.1
1111
github.com/gin-gonic/gin v1.9.1
1212
github.com/go-git/go-git/v5 v5.11.0
13-
github.com/go-vela/sdk-go v0.22.1-0.20240118151315-18ea1c51b5b2
14-
github.com/go-vela/server v0.22.3-0.20240124164127-136cd544d576
15-
github.com/go-vela/types v0.22.1-0.20240122175704-d058de26b401
16-
github.com/go-vela/worker v0.22.1-0.20240118173944-724912db3b72
13+
github.com/go-vela/sdk-go v0.23.0-rc1
14+
github.com/go-vela/server v0.23.0-rc1
15+
github.com/go-vela/types v0.23.0-rc1
16+
github.com/go-vela/worker v0.23.0-rc1
1717
github.com/golang-jwt/jwt/v5 v5.2.0
1818
github.com/google/go-cmp v0.6.0
1919
github.com/gosuri/uitable v0.0.4
@@ -47,11 +47,11 @@ require (
4747
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
4848
github.com/distribution/reference v0.5.0 // indirect
4949
github.com/docker/distribution v2.8.3+incompatible // indirect
50-
github.com/docker/docker v24.0.7+incompatible // indirect
50+
github.com/docker/docker v24.0.8+incompatible // indirect
5151
github.com/docker/go-connections v0.4.0 // indirect
5252
github.com/docker/go-units v0.5.0 // indirect
5353
github.com/drone/envsubst v1.0.3 // indirect
54-
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
54+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
5555
github.com/emirpasic/gods v1.18.1 // indirect
5656
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
5757
github.com/fatih/color v1.10.0 // indirect
@@ -60,7 +60,7 @@ require (
6060
github.com/gin-contrib/sse v0.1.0 // indirect
6161
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
6262
github.com/go-git/go-billy/v5 v5.5.0 // indirect
63-
github.com/go-logr/logr v1.2.4 // indirect
63+
github.com/go-logr/logr v1.3.0 // indirect
6464
github.com/go-openapi/jsonpointer v0.19.6 // indirect
6565
github.com/go-openapi/jsonreference v0.20.2 // indirect
6666
github.com/go-openapi/swag v0.22.3 // indirect
@@ -72,10 +72,10 @@ require (
7272
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7373
github.com/golang/protobuf v1.5.3 // indirect
7474
github.com/google/gnostic-models v0.6.8 // indirect
75-
github.com/google/go-github/v56 v56.0.0 // indirect
75+
github.com/google/go-github/v58 v58.0.0 // indirect
7676
github.com/google/go-querystring v1.1.0 // indirect
7777
github.com/google/gofuzz v1.2.0 // indirect
78-
github.com/google/uuid v1.4.0 // indirect
78+
github.com/google/uuid v1.6.0 // indirect
7979
github.com/goware/urlx v0.3.2 // indirect
8080
github.com/hashicorp/errwrap v1.1.0 // indirect
8181
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -99,7 +99,7 @@ require (
9999
github.com/modern-go/reflect2 v1.0.2 // indirect
100100
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
101101
github.com/opencontainers/go-digest v1.0.0 // indirect
102-
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
102+
github.com/opencontainers/image-spec v1.1.0-rc6 // indirect
103103
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
104104
github.com/pjbgf/sha1cd v0.3.0 // indirect
105105
github.com/pkg/errors v0.9.1 // indirect
@@ -114,29 +114,29 @@ require (
114114
github.com/ugorji/go/codec v1.2.11 // indirect
115115
github.com/xanzy/ssh-agent v0.3.3 // indirect
116116
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
117-
go.starlark.net v0.0.0-20231101134539-556fd59b42f6 // indirect
117+
go.starlark.net v0.0.0-20240123142251-f86470692795 // indirect
118118
golang.org/x/arch v0.3.0 // indirect
119-
golang.org/x/crypto v0.17.0 // indirect
120-
golang.org/x/mod v0.12.0 // indirect
121-
golang.org/x/net v0.19.0 // indirect
122-
golang.org/x/oauth2 v0.15.0 // indirect
123-
golang.org/x/sync v0.5.0 // indirect
124-
golang.org/x/sys v0.15.0 // indirect
125-
golang.org/x/term v0.15.0 // indirect
119+
golang.org/x/crypto v0.18.0 // indirect
120+
golang.org/x/mod v0.14.0 // indirect
121+
golang.org/x/net v0.20.0 // indirect
122+
golang.org/x/oauth2 v0.16.0 // indirect
123+
golang.org/x/sync v0.6.0 // indirect
124+
golang.org/x/sys v0.16.0 // indirect
125+
golang.org/x/term v0.16.0 // indirect
126126
golang.org/x/text v0.14.0 // indirect
127127
golang.org/x/time v0.5.0 // indirect
128-
golang.org/x/tools v0.13.0 // indirect
128+
golang.org/x/tools v0.16.1 // indirect
129129
google.golang.org/appengine v1.6.7 // indirect
130130
google.golang.org/protobuf v1.31.0 // indirect
131131
gopkg.in/inf.v0 v0.9.1 // indirect
132132
gopkg.in/warnings.v0 v0.1.2 // indirect
133-
k8s.io/api v0.28.3 // indirect
134-
k8s.io/apimachinery v0.28.3 // indirect
135-
k8s.io/client-go v0.28.3 // indirect
136-
k8s.io/klog/v2 v2.100.1 // indirect
137-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
138-
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
133+
k8s.io/api v0.29.1 // indirect
134+
k8s.io/apimachinery v0.29.1 // indirect
135+
k8s.io/client-go v0.29.1 // indirect
136+
k8s.io/klog/v2 v2.110.1 // indirect
137+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
138+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
139139
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
140-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
140+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
141141
sigs.k8s.io/yaml v1.4.0 // indirect
142142
)

0 commit comments

Comments
 (0)