Skip to content

Commit c054831

Browse files
fix(deps): update all non-major dependencies
1 parent c70003d commit c054831

10 files changed

+90
-87
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

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

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
42+
uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
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@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
53+
uses: github/codeql-action/autobuild@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
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@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
67+
uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0

.github/workflows/prerelease.yml

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

1515
steps:
1616
- name: clone
17-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818

1919
- name: install go
20-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
20+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2121
with:
2222
# use version from go.mod file
2323
go-version-file: 'go.mod'

.github/workflows/publish.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

.github/workflows/reviewdog.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212

1313
steps:
1414
- name: clone
15-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: 'go.mod'
2222
cache: true
2323

2424
- name: golangci-lint
25-
uses: reviewdog/action-golangci-lint@7708105983c614f7a2725e2172908b7709d1c3e4 # v2.6.2
25+
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b # v2.7.0
2626
with:
2727
github_token: ${{ secrets.github_token }}
2828
golangci_lint_flags: "--config=.golangci.yml"
@@ -35,17 +35,17 @@ jobs:
3535

3636
steps:
3737
- name: clone
38-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
4242
with:
4343
# use version from go.mod file
4444
go-version-file: 'go.mod'
4545
cache: true
4646

4747
- name: golangci-lint
48-
uses: reviewdog/action-golangci-lint@7708105983c614f7a2725e2172908b7709d1c3e4 # v2.6.2
48+
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b # v2.7.0
4949
with:
5050
github_token: ${{ secrets.github_token }}
5151
golangci_lint_flags: "--config=.golangci.yml"

.github/workflows/test.yml

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

1414
steps:
1515
- name: clone
16-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'
@@ -27,7 +27,7 @@ jobs:
2727
go test -race -covermode=atomic -coverprofile=coverage.out ./...
2828
2929
- name: coverage
30-
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
30+
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
file: coverage.out

.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2020
with:
2121
# use version from go.mod file
2222
go-version-file: 'go.mod'

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
## docker build --no-cache --target certs -t secret-vault:certs . ##
55
##############################################################################
66

7-
FROM alpine:3.20.2@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5 as certs
7+
FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45 as certs
88

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

1111
###############################################################
1212
## docker build --no-cache -t secret-vault:local . ##
1313
###############################################################
1414

15-
FROM alpine:3.20.2@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5
15+
FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
1616

1717
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
1818

go.mod

+22-20
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
module github.com/go-vela/secret-vault
22

3-
go 1.23.0
3+
go 1.23.2
4+
5+
toolchain go1.23.4
46

57
require (
6-
github.com/hashicorp/vault/api v1.14.0
8+
github.com/hashicorp/vault/api v1.15.0
79
github.com/joho/godotenv v1.5.1
810
github.com/sirupsen/logrus v1.9.3
911
github.com/spf13/afero v1.11.0
10-
github.com/urfave/cli/v2 v2.27.4
12+
github.com/urfave/cli/v2 v2.27.5
1113
)
1214

1315
require (
1416
github.com/Microsoft/go-winio v0.6.1 // indirect
17+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
1518
github.com/containerd/containerd v1.7.12 // indirect
1619
github.com/containerd/log v0.1.0 // indirect
1720
github.com/distribution/reference v0.6.0 // indirect
18-
github.com/docker/docker v25.0.6+incompatible // indirect
21+
github.com/docker/docker v26.1.5+incompatible // indirect
1922
github.com/docker/go-connections v0.4.0 // indirect
2023
github.com/docker/go-units v0.5.0 // indirect
2124
github.com/felixge/httpsnoop v1.0.4 // indirect
2225
github.com/frankban/quicktest v1.14.6 // indirect
2326
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
2427
github.com/go-logr/stdr v1.2.2 // indirect
28+
github.com/moby/docker-image-spec v1.3.1 // indirect
2529
github.com/moby/patternmatcher v0.5.0 // indirect
2630
github.com/moby/sys/sequential v0.5.0 // indirect
2731
github.com/moby/sys/user v0.1.0 // indirect
@@ -30,23 +34,23 @@ require (
3034
github.com/opencontainers/go-digest v1.0.0 // indirect
3135
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
3236
github.com/rogpeppe/go-internal v1.12.0 // indirect
33-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
34-
go.opentelemetry.io/otel v1.24.0 // indirect
37+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
38+
go.opentelemetry.io/otel v1.28.0 // indirect
3539
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
36-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
40+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
3741
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
38-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
42+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
3943
golang.org/x/mod v0.17.0 // indirect
4044
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
4145
gotest.tools/v3 v3.5.0 // indirect
4246
)
4347

4448
require (
4549
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
46-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
50+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
4751
github.com/fatih/color v1.16.0 // indirect
48-
github.com/go-logr/logr v1.4.1 // indirect
49-
github.com/go-vela/types v0.24.0
52+
github.com/go-logr/logr v1.4.2 // indirect
53+
github.com/go-vela/types v0.25.1
5054
github.com/gogo/protobuf v1.3.2 // indirect
5155
github.com/golang/snappy v0.0.4 // indirect
5256
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -60,7 +64,7 @@ require (
6064
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
6165
github.com/hashicorp/go-uuid v1.0.3 // indirect
6266
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
63-
github.com/hashicorp/vault/sdk v0.13.0
67+
github.com/hashicorp/vault/sdk v0.14.0
6468
github.com/klauspost/compress v1.16.7 // indirect
6569
github.com/mattn/go-colorable v0.1.13 // indirect
6670
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -72,13 +76,11 @@ require (
7276
github.com/ryanuber/go-glob v1.0.0 // indirect
7377
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
7478
go.uber.org/atomic v1.11.0 // indirect
75-
golang.org/x/crypto v0.24.0 // indirect
76-
golang.org/x/net v0.26.0 // indirect
77-
golang.org/x/sync v0.7.0 // indirect
78-
golang.org/x/sys v0.21.0 // indirect
79-
golang.org/x/text v0.16.0 // indirect
79+
golang.org/x/crypto v0.26.0 // indirect
80+
golang.org/x/net v0.28.0 // indirect
81+
golang.org/x/sync v0.8.0 // indirect
82+
golang.org/x/sys v0.24.0 // indirect
83+
golang.org/x/text v0.17.0 // indirect
8084
golang.org/x/time v0.5.0 // indirect
81-
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect
82-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
83-
google.golang.org/grpc v1.61.1 // indirect
85+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
8486
)

0 commit comments

Comments
 (0)