Skip to content

Commit e54ebb8

Browse files
authored
Merge pull request #283 from inovex/update-ci
update all deps and use go 1.25
2 parents ee2d3f2 + 18b9d32 commit e54ebb8

File tree

7 files changed

+105
-102
lines changed

7 files changed

+105
-102
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Build
33
on: [ push ]
44

55
env:
6-
GO_VERSION: '1.24'
7-
GOLANGCI_VERSION: 'v2.4.0'
6+
GO_VERSION: '1.25'
7+
GOLANGCI_VERSION: 'v2.5.0'
88
STATICCHECK_VERSION: '2025.1.1'
99

1010
permissions:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'v*'
77

88
env:
9-
GO_VERSION: '1.23'
9+
GO_VERSION: '1.25'
1010

1111
permissions:
1212
contents: write

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ vendor: ## Vendor dependencies
4848
## Test
4949

5050
test: ## Run all tests
51-
$(GO) run github.com/vektra/mockery/v2@v2.42.0
51+
$(GO) run github.com/vektra/mockery/v2@v2.53.3
5252
$(GOTEST) -race $(GOLIST)
5353

5454
coverage: ## Run tests with coverage and export it into 'profile.cov'. If 'COVERAGE_EXPORT' is true, 'COVERAGE_FILE' is written
@@ -63,7 +63,7 @@ endif
6363
lint: lint-go lint-yaml lint-dockerfile ## Run all linters
6464

6565
lint-go: ## Lint all GO files
66-
$(DOCKER) run --rm -it -v $(PWD):/app -w /app $(GOLANGCI_LINT_IMAGE) golangci-lint run --go "1.23"
66+
$(DOCKER) run --rm -it -v $(PWD):/app -w /app $(GOLANGCI_LINT_IMAGE) golangci-lint run --go "1.25"
6767

6868
lint-yaml: ## Lint all YAML files
6969
$(DOCKER) run --rm -it -v $(PWD):/data $(YAMLLINT_IMAGE) -f parsable $(YAMLFILES)

go.mod

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,70 @@
11
module github.com/inovex/CalendarSync
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
filippo.io/age v1.2.1
77
github.com/aquilax/truncate v1.0.1
88
github.com/cenkalti/backoff/v4 v4.3.0
99
github.com/charmbracelet/log v0.4.2
10-
github.com/emersion/go-ical v0.0.0-20240127095438-fc1c9d8fb2b6
10+
github.com/emersion/go-ical v0.0.0-20250609112844-439c63cef608
1111
github.com/emersion/go-webdav v0.6.0
1212
github.com/microcosm-cc/bluemonday v1.0.27
13-
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
13+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
1414
github.com/stretchr/testify v1.11.1
1515
github.com/urfave/cli/v2 v2.27.7
1616
go.uber.org/ratelimit v0.3.1
17-
golang.org/x/oauth2 v0.31.0
18-
google.golang.org/api v0.251.0
17+
golang.org/x/oauth2 v0.32.0
18+
google.golang.org/api v0.252.0
1919
gopkg.in/yaml.v3 v3.0.1
2020
)
2121

2222
require (
23-
cloud.google.com/go/auth v0.16.5 // indirect
23+
cloud.google.com/go/auth v0.17.0 // indirect
2424
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2525
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2626
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
2727
github.com/aymerick/douceur v0.2.0 // indirect
28-
github.com/benbjohnson/clock v1.3.0 // indirect
29-
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
28+
github.com/benbjohnson/clock v1.3.5 // indirect
29+
github.com/charmbracelet/colorprofile v0.3.2 // indirect
3030
github.com/charmbracelet/lipgloss v1.1.0 // indirect
31-
github.com/charmbracelet/x/ansi v0.8.0 // indirect
32-
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
31+
github.com/charmbracelet/x/ansi v0.10.2 // indirect
32+
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
3333
github.com/charmbracelet/x/term v0.2.1 // indirect
34+
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
3435
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
3536
github.com/davecgh/go-spew v1.1.1 // indirect
3637
github.com/felixge/httpsnoop v1.0.4 // indirect
37-
github.com/go-logfmt/logfmt v0.6.0 // indirect
38+
github.com/go-logfmt/logfmt v0.6.1 // indirect
3839
github.com/go-logr/logr v1.4.3 // indirect
3940
github.com/go-logr/stdr v1.2.2 // indirect
4041
github.com/google/s2a-go v0.1.9 // indirect
4142
github.com/google/uuid v1.6.0 // indirect
4243
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
4344
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
4445
github.com/gorilla/css v1.0.1 // indirect
45-
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
46+
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
4647
github.com/mattn/go-isatty v0.0.20 // indirect
47-
github.com/mattn/go-runewidth v0.0.16 // indirect
48+
github.com/mattn/go-runewidth v0.0.19 // indirect
4849
github.com/muesli/termenv v0.16.0 // indirect
4950
github.com/pmezard/go-difflib v1.0.0 // indirect
5051
github.com/rivo/uniseg v0.4.7 // indirect
5152
github.com/russross/blackfriday/v2 v2.1.0 // indirect
52-
github.com/stretchr/objx v0.5.2 // indirect
53+
github.com/stretchr/objx v0.5.3 // indirect
5354
github.com/teambition/rrule-go v1.8.2 // indirect
5455
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
55-
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
56-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
57-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
58-
go.opentelemetry.io/otel v1.37.0 // indirect
59-
go.opentelemetry.io/otel/metric v1.37.0 // indirect
60-
go.opentelemetry.io/otel/trace v1.37.0 // indirect
61-
golang.org/x/crypto v0.42.0 // indirect
62-
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
63-
golang.org/x/net v0.44.0 // indirect
64-
golang.org/x/sys v0.36.0 // indirect
65-
golang.org/x/text v0.29.0 // indirect
66-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250929231259-57b25ae835d4 // indirect
67-
google.golang.org/grpc v1.75.1 // indirect
68-
google.golang.org/protobuf v1.36.9 // indirect
56+
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
57+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
58+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
59+
go.opentelemetry.io/otel v1.38.0 // indirect
60+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
61+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
62+
golang.org/x/crypto v0.43.0 // indirect
63+
golang.org/x/exp v0.0.0-20251009144603-d2f985daa21b // indirect
64+
golang.org/x/net v0.46.0 // indirect
65+
golang.org/x/sys v0.37.0 // indirect
66+
golang.org/x/text v0.30.0 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251007200510-49b9836ed3ff // indirect
68+
google.golang.org/grpc v1.76.0 // indirect
69+
google.golang.org/protobuf v1.36.10 // indirect
6970
)

0 commit comments

Comments
 (0)