Skip to content

Commit 774ed74

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

10 files changed

+130
-138
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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9

.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c 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.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
1616

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

go.mod

+32-35
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,53 @@
11
module github.com/go-vela/secret-vault
22

3-
go 1.23.0
3+
go 1.23.5
4+
5+
toolchain go1.24.0
46

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

1315
require (
14-
github.com/Microsoft/go-winio v0.6.1 // indirect
15-
github.com/containerd/containerd v1.7.12 // indirect
16+
github.com/Microsoft/go-winio v0.6.2 // indirect
17+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
1618
github.com/containerd/log v0.1.0 // indirect
1719
github.com/distribution/reference v0.6.0 // indirect
18-
github.com/docker/docker v25.0.6+incompatible // indirect
19-
github.com/docker/go-connections v0.4.0 // indirect
20+
github.com/docker/docker v27.2.1+incompatible // indirect
21+
github.com/docker/go-connections v0.5.0 // indirect
2022
github.com/docker/go-units v0.5.0 // indirect
2123
github.com/felixge/httpsnoop v1.0.4 // indirect
2224
github.com/frankban/quicktest v1.14.6 // indirect
23-
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
25+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
2426
github.com/go-logr/stdr v1.2.2 // indirect
27+
github.com/moby/docker-image-spec v1.3.1 // indirect
2528
github.com/moby/patternmatcher v0.5.0 // indirect
2629
github.com/moby/sys/sequential v0.5.0 // indirect
27-
github.com/moby/sys/user v0.1.0 // indirect
30+
github.com/moby/sys/user v0.2.0 // indirect
31+
github.com/moby/sys/userns v0.1.0 // indirect
2832
github.com/moby/term v0.5.0 // indirect
2933
github.com/morikuni/aec v1.0.0 // indirect
3034
github.com/opencontainers/go-digest v1.0.0 // indirect
31-
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
32-
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
35+
github.com/opencontainers/image-spec v1.1.0 // indirect
36+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
37+
go.opentelemetry.io/otel v1.31.0 // indirect
3538
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
36-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
37-
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
38-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
39-
golang.org/x/mod v0.17.0 // indirect
40-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
39+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
40+
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
41+
go.opentelemetry.io/otel/trace v1.31.0 // indirect
4142
gotest.tools/v3 v3.5.0 // indirect
4243
)
4344

4445
require (
4546
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
46-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
47-
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
47+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
48+
github.com/fatih/color v1.17.0 // indirect
49+
github.com/go-logr/logr v1.4.2 // indirect
50+
github.com/go-vela/types v0.26.0
5051
github.com/gogo/protobuf v1.3.2 // indirect
5152
github.com/golang/snappy v0.0.4 // indirect
5253
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -55,13 +56,13 @@ require (
5556
github.com/hashicorp/go-multierror v1.1.1 // indirect
5657
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
5758
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
58-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect
59+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.9 // indirect
5960
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
6061
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
6162
github.com/hashicorp/go-uuid v1.0.3 // indirect
6263
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
63-
github.com/hashicorp/vault/sdk v0.13.0
64-
github.com/klauspost/compress v1.16.7 // indirect
64+
github.com/hashicorp/vault/sdk v0.15.0
65+
github.com/klauspost/compress v1.17.11 // indirect
6566
github.com/mattn/go-colorable v0.1.13 // indirect
6667
github.com/mattn/go-isatty v0.0.20 // indirect
6768
github.com/mitchellh/go-homedir v1.1.0 // indirect
@@ -72,13 +73,9 @@ require (
7273
github.com/ryanuber/go-glob v1.0.0 // indirect
7374
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
7475
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
80-
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
76+
golang.org/x/crypto v0.32.0 // indirect
77+
golang.org/x/net v0.34.0 // indirect
78+
golang.org/x/sys v0.29.0 // indirect
79+
golang.org/x/text v0.21.0 // indirect
80+
golang.org/x/time v0.9.0 // indirect
8481
)

0 commit comments

Comments
 (0)