Skip to content

Commit b09e504

Browse files
committed
build: update go to v1.25.1 and bump all dependencies
1 parent c48b647 commit b09e504

File tree

6 files changed

+88
-86
lines changed

6 files changed

+88
-86
lines changed

.github/workflows/quality.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Check out code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Setup Go
16-
uses: actions/setup-go@v5
16+
uses: actions/setup-go@v6
1717
with:
18-
go-version: 1.24.2
18+
go-version: 1.25.1
1919
- name: Lint
20-
uses: golangci/golangci-lint-action@v7
20+
uses: golangci/golangci-lint-action@v8
2121
with:
22-
version: v2.1.5
22+
version: v2.4.0
2323
skip-cache: true
2424
build:
2525
runs-on: ubuntu-24.04
2626
steps:
2727
- name: Check out code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Setup Go
30-
uses: actions/setup-go@v5
30+
uses: actions/setup-go@v6
3131
with:
32-
go-version: 1.24.2
32+
go-version: 1.25.1
3333
- name: Build
3434
run: make build

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616
- name: Setup Go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@v6
1818
with:
19-
go-version: 1.24.2
19+
go-version: 1.25.1
2020
- name: Create release
2121
uses: goreleaser/goreleaser-action@v6
2222
with:

.github/workflows/sync.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-24.04
3232
steps:
3333
- name: Check out code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
- name: Install Google Chrome
3636
run: |
3737
wget -q https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1321438/chrome-linux.zip
@@ -43,9 +43,9 @@ jobs:
4343
exit 1
4444
fi
4545
- name: Setup Go
46-
uses: actions/setup-go@v5
46+
uses: actions/setup-go@v6
4747
with:
48-
go-version: 1.24.2
48+
go-version: 1.25.1
4949
- name: Build
5050
run: make build
5151
- name: Sync

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.2-alpine AS build
1+
FROM golang:1.25.1-alpine AS build
22
WORKDIR /app
33
COPY go.mod go.sum ./
44
RUN go mod download

go.mod

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
module github.com/cecobask/imdb-trakt-sync
22

3-
go 1.24.2
3+
go 1.25.1
44

55
require (
6-
github.com/PuerkitoBio/goquery v1.10.2
7-
github.com/charmbracelet/bubbles v0.20.0
8-
github.com/charmbracelet/bubbletea v1.3.4
6+
github.com/PuerkitoBio/goquery v1.10.3
7+
github.com/charmbracelet/bubbles v0.21.0
8+
github.com/charmbracelet/bubbletea v1.3.9
99
github.com/charmbracelet/lipgloss v1.1.0
1010
github.com/go-rod/rod v0.116.2
11-
github.com/knadh/koanf/parsers/yaml v0.1.0
12-
github.com/knadh/koanf/providers/confmap v0.1.0
13-
github.com/knadh/koanf/providers/env v1.0.0
14-
github.com/knadh/koanf/providers/file v1.1.2
15-
github.com/knadh/koanf/v2 v2.1.2
16-
github.com/spf13/cobra v1.9.1
11+
github.com/knadh/koanf/parsers/yaml v1.1.0
12+
github.com/knadh/koanf/providers/confmap v1.0.0
13+
github.com/knadh/koanf/providers/env v1.1.0
14+
github.com/knadh/koanf/providers/file v1.2.0
15+
github.com/knadh/koanf/v2 v2.2.2
16+
github.com/spf13/cobra v1.10.1
1717
)
1818

1919
require (
2020
github.com/andybalholm/cascadia v1.3.3 // indirect
2121
github.com/atotto/clipboard v0.1.4 // indirect
2222
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
23-
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
24-
github.com/charmbracelet/x/ansi v0.8.0 // indirect
25-
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
23+
github.com/charmbracelet/colorprofile v0.3.2 // indirect
24+
github.com/charmbracelet/x/ansi v0.10.1 // indirect
25+
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
2626
github.com/charmbracelet/x/term v0.2.1 // indirect
2727
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
28-
github.com/fsnotify/fsnotify v1.8.0 // indirect
29-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
28+
github.com/fsnotify/fsnotify v1.9.0 // indirect
29+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
3030
github.com/inconshreveable/mousetrap v1.1.0 // indirect
31-
github.com/knadh/koanf/maps v0.1.1 // indirect
32-
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
31+
github.com/knadh/koanf/maps v0.1.2 // indirect
32+
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
3333
github.com/mattn/go-isatty v0.0.20 // indirect
3434
github.com/mattn/go-localereader v0.0.1 // indirect
3535
github.com/mattn/go-runewidth v0.0.16 // indirect
@@ -39,17 +39,18 @@ require (
3939
github.com/muesli/cancelreader v0.2.2 // indirect
4040
github.com/muesli/termenv v0.16.0 // indirect
4141
github.com/rivo/uniseg v0.4.7 // indirect
42-
github.com/spf13/pflag v1.0.6 // indirect
42+
github.com/spf13/pflag v1.0.10 // indirect
4343
github.com/stretchr/testify v1.10.0 // indirect
4444
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
45-
github.com/ysmood/fetchup v0.2.4 // indirect
45+
github.com/ysmood/fetchup v0.5.2 // indirect
4646
github.com/ysmood/goob v0.4.0 // indirect
47-
github.com/ysmood/got v0.40.0 // indirect
47+
github.com/ysmood/got v0.41.0 // indirect
4848
github.com/ysmood/gson v0.7.3 // indirect
4949
github.com/ysmood/leakless v0.9.0 // indirect
50-
golang.org/x/net v0.38.0 // indirect
51-
golang.org/x/sync v0.12.0 // indirect
52-
golang.org/x/sys v0.31.0 // indirect
53-
golang.org/x/text v0.23.0 // indirect
54-
gopkg.in/yaml.v3 v3.0.1 // indirect
50+
go.yaml.in/yaml/v3 v3.0.4 // indirect
51+
golang.org/x/net v0.44.0 // indirect
52+
golang.org/x/sys v0.36.0 // indirect
53+
golang.org/x/text v0.29.0 // indirect
5554
)
55+
56+
replace github.com/ysmood/fetchup => github.com/ysmood/fetchup v0.3.0

0 commit comments

Comments
 (0)