Skip to content

Commit d60fdda

Browse files
authored
Merge pull request #615 from innogames/go122
Require go 1.22
2 parents f3eb226 + 57c87bc commit d60fdda

4 files changed

Lines changed: 60 additions & 53 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
# https://github.com/actions/go-versions/blob/main/versions-manifest.json
16-
go-version: [1.21.x, 1.22.x]
16+
go-version: [1.22.x, 1.23.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module github.com/innogames/slack-bot/v2
22

3-
go 1.21.9
3+
go 1.22.0
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.32.1
77
github.com/andygrunwald/go-jira v1.16.0
8-
github.com/aws/aws-sdk-go v1.53.3
8+
github.com/aws/aws-sdk-go v1.55.5
99
github.com/bndr/gojenkins v1.1.0
1010
github.com/brainexe/viper v1.8.2
11-
github.com/gfleury/go-bitbucket-v1 v0.0.0-20240131155556-0b41d7863037
11+
github.com/gfleury/go-bitbucket-v1 v0.0.0-20240822132758-a3031aa024b4
1212
github.com/google/go-github v17.0.0+incompatible
1313
github.com/gookit/color v1.5.4
1414
github.com/hackebrot/turtle v0.2.0
1515
github.com/pkg/errors v0.9.1
1616
github.com/prometheus/client_golang v1.20.3
17-
github.com/redis/go-redis/v9 v9.6.0
17+
github.com/redis/go-redis/v9 v9.6.1
1818
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
1919
github.com/robfig/cron/v3 v3.0.1
2020
github.com/sdomino/golang-scribble v0.0.0-20230717151034-b95d4df19aa8
@@ -23,9 +23,9 @@ require (
2323
github.com/stretchr/testify v1.9.0
2424
github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c
2525
github.com/xanzy/go-gitlab v0.108.0
26-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
27-
golang.org/x/oauth2 v0.21.0
28-
golang.org/x/text v0.17.0
26+
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
27+
golang.org/x/oauth2 v0.23.0
28+
golang.org/x/text v0.18.0
2929
gopkg.in/yaml.v3 v3.0.1
3030
)
3131

@@ -37,9 +37,9 @@ require (
3737
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
3838
github.com/fatih/structs v1.1.0 // indirect
3939
github.com/fsnotify/fsnotify v1.7.0 // indirect
40-
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
40+
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
4141
github.com/google/go-querystring v1.1.0 // indirect
42-
github.com/gorilla/websocket v1.4.2 // indirect
42+
github.com/gorilla/websocket v1.5.3 // indirect
4343
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4444
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
4545
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -49,24 +49,24 @@ require (
4949
github.com/magiconair/properties v1.8.7 // indirect
5050
github.com/mitchellh/mapstructure v1.5.0 // indirect
5151
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
52-
github.com/pelletier/go-toml v1.2.0 // indirect
52+
github.com/pelletier/go-toml v1.9.5 // indirect
5353
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5454
github.com/prometheus/client_model v0.6.1 // indirect
55-
github.com/prometheus/common v0.55.0 // indirect
55+
github.com/prometheus/common v0.59.1 // indirect
5656
github.com/prometheus/procfs v0.15.1 // indirect
5757
github.com/spf13/afero v1.11.0 // indirect
58-
github.com/spf13/cast v1.6.0 // indirect
59-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
58+
github.com/spf13/cast v1.7.0 // indirect
59+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
6060
github.com/spf13/pflag v1.0.5 // indirect
6161
github.com/spf13/viper v1.18.2 // indirect
6262
github.com/stretchr/objx v0.5.2 // indirect
6363
github.com/subosito/gotenv v1.6.0 // indirect
6464
github.com/trivago/tgo v1.0.7 // indirect
65-
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
65+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
6666
github.com/yuin/gopher-lua v1.1.1 // indirect
67-
golang.org/x/net v0.26.0 // indirect
68-
golang.org/x/sys v0.22.0 // indirect
69-
golang.org/x/time v0.5.0 // indirect
67+
golang.org/x/net v0.29.0 // indirect
68+
golang.org/x/sys v0.25.0 // indirect
69+
golang.org/x/time v0.6.0 // indirect
7070
google.golang.org/protobuf v1.34.2 // indirect
7171
gopkg.in/ini.v1 v1.67.0 // indirect
7272
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)