Skip to content

Commit 1035779

Browse files
committed
Update dependencies and fix the lint pipeline
1 parent 525814c commit 1035779

File tree

3 files changed

+84
-95
lines changed

3 files changed

+84
-95
lines changed

.github/workflows/test.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- ~1.20
2828
- ~1.21
2929
- ~1.22
30+
- ~1.23
3031
runs-on: ${{ matrix.os }}
3132
steps:
3233
- name: Checkout the code
@@ -79,10 +80,14 @@ jobs:
7980
os: [ubuntu-latest, macos-latest, windows-latest]
8081
runs-on: ${{ matrix.os }}
8182
env:
82-
GOLANGCI_LINT_VERSION: 1.55.2
83+
GOLANGCI_LINT_VERSION: 1.62.2
8384
steps:
8485
- name: Checkout the code
8586
uses: actions/checkout@v4
87+
- name: Set up Go
88+
uses: actions/setup-go@v5
89+
with:
90+
go-version: ~1.23
8691
- name: Download golangci-lint
8792
if: startsWith(matrix.os, 'windows') != true
8893
run: |

go.mod

+22-22
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,36 @@ module github.com/jeandeaual/go-locale
33
go 1.18
44

55
require (
6-
fyne.io/fyne/v2 v2.4.3
7-
github.com/nicksnyder/go-i18n/v2 v2.4.0
8-
github.com/stretchr/testify v1.8.4
9-
golang.org/x/sys v0.16.0
10-
golang.org/x/text v0.14.0
6+
fyne.io/fyne/v2 v2.5.2
7+
github.com/nicksnyder/go-i18n/v2 v2.4.1
8+
github.com/stretchr/testify v1.10.0
9+
golang.org/x/sys v0.27.0
10+
golang.org/x/text v0.20.0
1111
)
1212

1313
require (
14-
fyne.io/systray v1.10.1-0.20231115130155-104f5ef7839e // indirect
14+
fyne.io/systray v1.11.0 // indirect
15+
github.com/BurntSushi/toml v1.4.0 // indirect
1516
github.com/davecgh/go-spew v1.1.1 // indirect
16-
github.com/fredbi/uri v1.0.0 // indirect
17-
github.com/fsnotify/fsnotify v1.6.0 // indirect
18-
github.com/fyne-io/gl-js v0.0.0-20220119005834-d2da28d9ccfe // indirect
19-
github.com/fyne-io/glfw-js v0.0.0-20220120001248-ee7290d23504 // indirect
20-
github.com/fyne-io/image v0.0.0-20220602074514-4956b0afb3d2 // indirect
21-
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect
22-
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
23-
github.com/go-text/render v0.0.0-20230619120952-35bccb6164b8 // indirect
24-
github.com/go-text/typesetting v0.0.0-20230616162802-9c17dd34aa4a // indirect
17+
github.com/fredbi/uri v1.1.0 // indirect
18+
github.com/fsnotify/fsnotify v1.8.0 // indirect
19+
github.com/fyne-io/gl-js v0.0.0-20230506162202-1fdaa286a934 // indirect
20+
github.com/fyne-io/glfw-js v0.0.0-20241126112943-313d8a0fe1d0 // indirect
21+
github.com/fyne-io/image v0.0.0-20240417123036-dc0ee9e7c964 // indirect
22+
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
23+
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a // indirect
24+
github.com/go-text/render v0.2.0 // indirect
25+
github.com/go-text/typesetting v0.2.0 // indirect
2526
github.com/godbus/dbus/v5 v5.1.0 // indirect
2627
github.com/gopherjs/gopherjs v1.17.2 // indirect
27-
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
28+
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
2829
github.com/pmezard/go-difflib v1.0.0 // indirect
30+
github.com/rymdport/portal v0.3.0 // indirect
2931
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
3032
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
31-
github.com/tevino/abool v1.2.0 // indirect
32-
github.com/yuin/goldmark v1.5.5 // indirect
33-
golang.org/x/image v0.11.0 // indirect
34-
golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect
35-
golang.org/x/net v0.17.0 // indirect
33+
github.com/yuin/goldmark v1.7.8 // indirect
34+
golang.org/x/image v0.22.0 // indirect
35+
golang.org/x/mobile v0.0.0-20241108191957-fa514ef75a0f // indirect
36+
golang.org/x/net v0.31.0 // indirect
3637
gopkg.in/yaml.v3 v3.0.1 // indirect
37-
honnef.co/go/js/dom v0.0.0-20210725211120-f030747120f2 // indirect
3838
)

0 commit comments

Comments
 (0)