Skip to content

Commit daf788d

Browse files
committed
Update to v1.15.15
Signed-off-by: Dominik Schulz <[email protected]>
1 parent 912485d commit daf788d

File tree

9 files changed

+73
-104
lines changed

9 files changed

+73
-104
lines changed

.github/workflows/autorelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22
25+
go-version: 1.23
2626
-
2727
name: Import GPG signing key
2828
id: import_gpg

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.22
21+
go-version: 1.23
2222

2323
- name: Ubuntu Dependencies
2424
run: sudo apt-get install --yes git gnupg2
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Go
5151
uses: actions/setup-go@v5
5252
with:
53-
go-version: 1.22
53+
go-version: 1.23
5454

5555
- name: MacOS Dependencies
5656
run: brew install git gnupg

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.22
21+
go-version: 1.23
2222
- uses: actions/checkout@v4
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v6

.golangci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ linters:
3636
- errname
3737
- errorlint
3838
- exhaustive
39-
- exportloopref
39+
# - exportloopref # deprecated since Go 1.22
4040
- forcetypeassert
4141
- funlen
4242
- ginkgolinter
@@ -90,6 +90,7 @@ issues:
9090
- helpers/
9191

9292
output:
93+
show-stats: true
9394
sort-results: true
9495
sort-order:
9596
- linter

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.15.15
2+
3+
- Bump dependencies to gopass release v1.15.15
4+
15
## 1.15.14
26

37
- Bump dependencies to gopass release v1.15.14

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.14
1+
1.15.15

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
module github.com/gopasspw/gopass-jsonapi
22

3-
go 1.22.1
3+
go 1.23.2
44

5-
toolchain go1.22.5
5+
toolchain go1.23.3
66

77
require (
88
github.com/blang/semver v3.5.1+incompatible
99
github.com/blang/semver/v4 v4.0.0
10-
github.com/fatih/color v1.17.0
11-
github.com/gopasspw/gopass v1.15.14
10+
github.com/fatih/color v1.18.0
11+
github.com/gopasspw/gopass v1.15.15
1212
github.com/pquerna/otp v1.4.0
13-
github.com/stretchr/testify v1.9.0
14-
github.com/urfave/cli/v2 v2.27.3
15-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
16-
golang.org/x/net v0.27.0
17-
golang.org/x/sys v0.22.0
13+
github.com/stretchr/testify v1.10.0
14+
github.com/urfave/cli/v2 v2.27.5
15+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
16+
golang.org/x/net v0.31.0
17+
golang.org/x/sys v0.27.0
1818
)
1919

2020
require (
21-
filippo.io/age v1.2.0 // indirect
21+
al.essio.dev/pkg/shellescape v1.5.1 // indirect
22+
filippo.io/age v1.2.1-0.20240618131852-7eedd929a6cf // indirect
2223
filippo.io/edwards25519 v1.1.0 // indirect
23-
github.com/ProtonMail/go-crypto v1.0.0 // indirect
24-
github.com/alessio/shellescape v1.4.2 // indirect
24+
github.com/ProtonMail/go-crypto v1.1.2 // indirect
2525
github.com/atotto/clipboard v0.1.4 // indirect
2626
github.com/boombuler/barcode v1.0.2 // indirect
2727
github.com/caspr-io/yamlpath v0.0.0-20200722075116-502e8d113a9b // indirect
28-
github.com/cloudflare/circl v1.3.9 // indirect
29-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
28+
github.com/cloudflare/circl v1.5.0 // indirect
29+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
3030
github.com/danieljoos/wincred v1.2.2 // indirect
3131
github.com/davecgh/go-spew v1.1.1 // indirect
3232
github.com/dustin/go-humanize v1.0.1 // indirect
33-
github.com/gen2brain/shm v0.1.0 // indirect
33+
github.com/gen2brain/shm v0.1.1 // indirect
3434
github.com/godbus/dbus/v5 v5.1.0 // indirect
3535
github.com/google/go-cmp v0.6.0 // indirect
3636
github.com/google/go-github/v61 v61.0.0 // indirect
3737
github.com/google/go-querystring v1.1.0 // indirect
3838
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
3939
github.com/jezek/xgb v1.1.1 // indirect
4040
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
41-
github.com/kbinani/screenshot v0.0.0-20230812210009-b87d31814237 // indirect
41+
github.com/kbinani/screenshot v0.0.0-20240820160931-a8a2c5d0e191 // indirect
4242
github.com/kr/pretty v0.3.1 // indirect
4343
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
4444
github.com/makiuchi-d/gozxing v0.1.1 // indirect
@@ -52,10 +52,10 @@ require (
5252
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5353
github.com/twpayne/go-pinentry v0.3.0 // indirect
5454
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
55-
github.com/zalando/go-keyring v0.2.5 // indirect
56-
golang.org/x/crypto v0.25.0 // indirect
57-
golang.org/x/term v0.22.0 // indirect
58-
golang.org/x/text v0.16.0 // indirect
59-
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
55+
github.com/zalando/go-keyring v0.2.6 // indirect
56+
golang.org/x/crypto v0.29.0 // indirect
57+
golang.org/x/term v0.26.0 // indirect
58+
golang.org/x/text v0.20.0 // indirect
59+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
6060
gopkg.in/yaml.v3 v3.0.1 // indirect
6161
)

0 commit comments

Comments
 (0)