Skip to content

Commit 0c9fa9f

Browse files
fix(deps): update all patch and minor
1 parent 4aaecb5 commit 0c9fa9f

5 files changed

Lines changed: 74 additions & 77 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,44 +17,44 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Set up QEMU
25-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
25+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
28+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
2929

3030
- name: docker.io Login
31-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
31+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
3232
with:
3333
registry: docker.io
3434
username: ${{ github.repository_owner }}
3535
password: ${{ secrets.DOCKER_HUB_TOKEN }}
3636

3737
- name: ghcr.io login
38-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
38+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.repository_owner }}
4242
password: ${{ secrets.GH_PAT }}
4343

4444
- name: quay.io Login
45-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
45+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
4646
with:
4747
registry: quay.io
4848
username: ${{ github.repository_owner }}
4949
password: ${{ secrets.QUAY_TOKEN }}
5050

5151
- name: Set up Go
52-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
52+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
5353
with:
54-
go-version: '1.22'
54+
go-version: '1.26'
5555

5656
- name: Import GPG key
57-
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6
57+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6
5858
with:
5959
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
6060
passphrase: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
27+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2828

2929
- name: Install Go
30-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
30+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
3131
with:
32-
go-version: '1.22'
32+
go-version: '1.26'
3333

3434
- name: Lint
3535
if: ${{ matrix.os == 'ubuntu-22.04' }}
@@ -39,7 +39,7 @@ jobs:
3939
run: make test
4040

4141
- name: Publish coverage to coveralls.io
42-
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1
42+
uses: shogo82148/actions-goveralls@25f5320d970fb565100cf1993ada29be1bb196a1 # v1
4343
if: ${{ matrix.os == 'ubuntu-22.04' }}
4444
with:
4545
path-to-profile: coverage.out

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# BUILD CONTAINER
33
##
44

5-
FROM alpine:3.21@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c as certs
5+
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as certs
66

77
RUN \
88
apk add --no-cache ca-certificates
@@ -11,7 +11,7 @@ RUN \
1111
# RELEASE CONTAINER
1212
##
1313

14-
FROM busybox:1.37-glibc@sha256:75ad89b4d27ba9abc38d495d4a89969b97ad47fd25b2f8eb959901dad09289f7
14+
FROM busybox:1.37-glibc@sha256:3f9777e7e82e8591542f72b965ec7db7e8b3bdb59692976af1bb9b2850b05a4e
1515

1616
WORKDIR /
1717

go.mod

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,39 @@
11
module github.com/mvisonneau/vac
22

3-
go 1.23
3+
go 1.24.0
44

55
require (
6-
github.com/gofrs/flock v0.12.1
6+
github.com/gofrs/flock v0.13.0
77
github.com/hashicorp/go-secure-stdlib/mlock v0.1.3
8-
github.com/hashicorp/vault/api v1.16.0
9-
github.com/ktr0731/go-fuzzyfinder v0.8.0
8+
github.com/hashicorp/vault/api v1.23.0
9+
github.com/ktr0731/go-fuzzyfinder v0.9.0
1010
github.com/mitchellh/go-homedir v1.1.0
1111
github.com/mvisonneau/go-helpers v0.0.1
1212
github.com/olekukonko/tablewriter v0.0.5
1313
github.com/pkg/errors v0.9.1
14-
github.com/sirupsen/logrus v1.9.3
15-
github.com/stretchr/testify v1.10.0
14+
github.com/sirupsen/logrus v1.9.4
15+
github.com/stretchr/testify v1.11.1
1616
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
17-
github.com/urfave/cli/v2 v2.27.6
17+
github.com/urfave/cli/v2 v2.27.7
1818
github.com/xeonx/timeago v1.0.0-rc5
1919
)
2020

2121
require (
2222
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
23-
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
23+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
2424
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2525
github.com/gdamore/encoding v1.0.1 // indirect
2626
github.com/gdamore/tcell/v2 v2.7.4 // indirect
27-
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
28-
github.com/go-test/deep v1.1.0 // indirect
27+
github.com/go-jose/go-jose/v4 v4.1.1 // indirect
2928
github.com/hashicorp/errwrap v1.1.0 // indirect
3029
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3130
github.com/hashicorp/go-multierror v1.1.1 // indirect
32-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
31+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
3332
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
34-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect
33+
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
3534
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
36-
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
37-
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
35+
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
36+
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect
3837
github.com/kr/text v0.2.0 // indirect
3938
github.com/ktr0731/go-ansisgr v0.1.0 // indirect
4039
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
@@ -47,12 +46,12 @@ require (
4746
github.com/russross/blackfriday/v2 v2.1.0 // indirect
4847
github.com/ryanuber/go-glob v1.0.0 // indirect
4948
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
50-
golang.org/x/crypto v0.32.0 // indirect
51-
golang.org/x/net v0.34.0 // indirect
52-
golang.org/x/sys v0.29.0 // indirect
53-
golang.org/x/term v0.28.0 // indirect
54-
golang.org/x/text v0.21.0 // indirect
55-
golang.org/x/time v0.5.0 // indirect
49+
golang.org/x/crypto v0.45.0 // indirect
50+
golang.org/x/net v0.47.0 // indirect
51+
golang.org/x/sys v0.38.0 // indirect
52+
golang.org/x/term v0.37.0 // indirect
53+
golang.org/x/text v0.31.0 // indirect
54+
golang.org/x/time v0.12.0 // indirect
5655
gopkg.in/yaml.v3 v3.0.1 // indirect
5756
)
5857

0 commit comments

Comments
 (0)