Skip to content

Commit 1af133c

Browse files
authored
Merge pull request #74 from partyoffice/add-dependabot-v2
Add dependabot v2
2 parents cf1a120 + 8e6c71d commit 1af133c

File tree

4 files changed

+37
-39
lines changed

4 files changed

+37
-39
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gomod
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
reviewers:
9+
- Nikos410

.github/workflows/test.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@ jobs:
1616
with:
1717
go-version: 1.17
1818

19-
- name: Fix go.sum for dependabot branches
20-
if: ${{ startsWith(github.ref, 'refs/heads/dependabot/go_modules/') }}
21-
run: go get ./...
22-
23-
- name: Commit & push updated go.sum for dependabot branches
24-
if: ${{ startsWith(github.ref, 'refs/heads/dependabot/go_modules/') }}
25-
uses: stefanzweifel/git-auto-commit-action@v4
26-
with:
27-
commit_message: Update go.sum
28-
file_pattern: go.sum
29-
3019
- name: Build
3120
run: go build -v ./...
3221

go.mod

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,29 @@ module github.com/partyoffice/spotifete
33
go 1.17
44

55
require (
6-
github.com/fsnotify/fsnotify v1.5.1 // indirect
76
github.com/getsentry/sentry-go v0.11.0
87
github.com/gin-contrib/cors v1.3.1
98
github.com/gin-gonic/gin v1.7.4
10-
github.com/go-playground/validator/v10 v10.9.0 // indirect
119
github.com/golang-migrate/migrate/v4 v4.15.1
1210
github.com/google/logger v1.1.1
13-
github.com/hashicorp/errwrap v1.1.0 // indirect
14-
github.com/hashicorp/go-multierror v1.1.1 // indirect
15-
github.com/jackc/pgx/v4 v4.13.0 // indirect
16-
github.com/json-iterator/go v1.1.12 // indirect
17-
github.com/leodido/go-urn v1.2.1 // indirect
18-
github.com/lib/pq v1.10.3 // indirect
19-
github.com/mattn/go-isatty v0.0.14 // indirect
20-
github.com/mitchellh/mapstructure v1.4.2 // indirect
2111
github.com/patrickmn/go-cache v2.1.0+incompatible
22-
github.com/pelletier/go-toml v1.9.4 // indirect
2312
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
24-
github.com/spf13/cast v1.4.1 // indirect
25-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2613
github.com/spf13/viper v1.9.0
2714
github.com/zmb3/spotify v1.3.0
28-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
29-
golang.org/x/net v0.0.0-20211101193420-4a448f8816b3 // indirect
30-
golang.org/x/oauth2 v0.0.0-20211028175245-ba495a64dcb5
31-
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
32-
golang.org/x/text v0.3.7 // indirect
33-
google.golang.org/appengine v1.6.7 // indirect
34-
google.golang.org/protobuf v1.27.1 // indirect
35-
gopkg.in/ini.v1 v1.63.2 // indirect
36-
gopkg.in/yaml.v2 v2.4.0 // indirect
15+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
3716
gorm.io/driver/postgres v1.2.1
3817
gorm.io/gorm v1.22.2
3918
)
4019

4120
require (
21+
github.com/fsnotify/fsnotify v1.5.1 // indirect
4222
github.com/gin-contrib/sse v0.1.0 // indirect
4323
github.com/go-playground/locales v0.14.0 // indirect
4424
github.com/go-playground/universal-translator v0.18.0 // indirect
25+
github.com/go-playground/validator/v10 v10.9.0 // indirect
4526
github.com/golang/protobuf v1.5.2 // indirect
27+
github.com/hashicorp/errwrap v1.1.0 // indirect
28+
github.com/hashicorp/go-multierror v1.1.1 // indirect
4629
github.com/hashicorp/hcl v1.0.0 // indirect
4730
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
4831
github.com/jackc/pgconn v1.10.0 // indirect
@@ -51,14 +34,31 @@ require (
5134
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
5235
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
5336
github.com/jackc/pgtype v1.8.1 // indirect
37+
github.com/jackc/pgx/v4 v4.13.0 // indirect
5438
github.com/jinzhu/inflection v1.0.0 // indirect
5539
github.com/jinzhu/now v1.1.2 // indirect
40+
github.com/json-iterator/go v1.1.12 // indirect
41+
github.com/leodido/go-urn v1.2.1 // indirect
42+
github.com/lib/pq v1.10.3 // indirect
5643
github.com/magiconair/properties v1.8.5 // indirect
44+
github.com/mattn/go-isatty v0.0.14 // indirect
45+
github.com/mitchellh/mapstructure v1.4.2 // indirect
5746
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5847
github.com/modern-go/reflect2 v1.0.2 // indirect
48+
github.com/pelletier/go-toml v1.9.4 // indirect
5949
github.com/spf13/afero v1.6.0 // indirect
50+
github.com/spf13/cast v1.4.1 // indirect
51+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
6052
github.com/spf13/pflag v1.0.5 // indirect
6153
github.com/subosito/gotenv v1.2.0 // indirect
6254
github.com/ugorji/go/codec v1.2.6 // indirect
6355
go.uber.org/atomic v1.9.0 // indirect
56+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
57+
golang.org/x/net v0.0.0-20211105192438-b53810dc28af // indirect
58+
golang.org/x/sys v0.0.0-20211106132015-ebca88c72f68 // indirect
59+
golang.org/x/text v0.3.7 // indirect
60+
google.golang.org/appengine v1.6.7 // indirect
61+
google.golang.org/protobuf v1.27.1 // indirect
62+
gopkg.in/ini.v1 v1.63.2 // indirect
63+
gopkg.in/yaml.v2 v2.4.0 // indirect
6464
)

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,8 +1268,8 @@ golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qx
12681268
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
12691269
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
12701270
golang.org/x/net v0.0.0-20211013171255-e13a2654a71e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
1271-
golang.org/x/net v0.0.0-20211101193420-4a448f8816b3 h1:VrJZAjbekhoRn7n5FBujY31gboH+iB3pdLxn3gE9FjU=
1272-
golang.org/x/net v0.0.0-20211101193420-4a448f8816b3/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
1271+
golang.org/x/net v0.0.0-20211105192438-b53810dc28af h1:SMeNJG/vclJ5wyBBd4xupMsSJIHTd1coW9g7q6KOjmY=
1272+
golang.org/x/net v0.0.0-20211105192438-b53810dc28af/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
12731273
golang.org/x/oauth2 v0.0.0-20180227000427-d7d64896b5ff/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
12741274
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
12751275
golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
@@ -1287,8 +1287,8 @@ golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ
12871287
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
12881288
golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
12891289
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
1290-
golang.org/x/oauth2 v0.0.0-20211028175245-ba495a64dcb5 h1:v79phzBz03tsVCUTbvTBmmC3CUXF5mKYt7DA4ZVldpM=
1291-
golang.org/x/oauth2 v0.0.0-20211028175245-ba495a64dcb5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
1290+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 h1:RerP+noqYHUQ8CMRcPlC2nvTa4dcBIjegkuWdcUDuqg=
1291+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
12921292
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
12931293
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
12941294
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -1406,8 +1406,8 @@ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBc
14061406
golang.org/x/sys v0.0.0-20210818153620-00dd8d7831e7/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
14071407
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
14081408
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1409-
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b h1:1VkfZQv42XQlA/jchYumAnv1UPo6RgF9rJFkTgZIxO4=
1410-
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1409+
golang.org/x/sys v0.0.0-20211106132015-ebca88c72f68 h1:Ywe/f3fNleF8I6F6qv3MeFoSZ6CTf2zBMMa/7qVML8M=
1410+
golang.org/x/sys v0.0.0-20211106132015-ebca88c72f68/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
14111411
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
14121412
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
14131413
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 commit comments

Comments
 (0)