Skip to content

Commit 783102e

Browse files
committed
* [ci] fix security
1 parent 27f1855 commit 783102e

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ updates:
33
- package-ecosystem: gomod
44
directory: /
55
schedule:
6-
interval: daily
6+
interval: weekly
7+
open-pull-requests-limit: 1
8+
rebase-strategy: disabled
79
- package-ecosystem: github-actions
810
directory: /
911
schedule:
1012
interval: daily
13+
open-pull-requests-limit: 1
14+
rebase-strategy: disabled

.github/workflows/merge.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: BotAutoMerge
2+
3+
on: pull_request
4+
5+
permissions:
6+
pull-requests: write
7+
contents: write
8+
9+
jobs:
10+
automerge:
11+
runs-on: ubuntu-latest
12+
if: github.actor == 'dependabot[bot]'
13+
steps:
14+
- uses: peter-evans/enable-pull-request-automerge@v3
15+
with:
16+
pull-request-number: ${{ github.event.pull_request.number }}
17+
merge-method: rebase

docs/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,4 +547,4 @@
547547
}
548548
}
549549
}
550-
}
550+
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
golang.org/x/crypto v0.31.0 // indirect
2828
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e // indirect
2929
golang.org/x/mod v0.22.0 // indirect
30-
golang.org/x/net v0.32.0 // indirect
30+
golang.org/x/net v0.33.0 // indirect
3131
golang.org/x/sync v0.10.0 // indirect
3232
golang.org/x/sys v0.28.0 // indirect
3333
golang.org/x/text v0.21.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e h1:4qufH0hlUYs6AO6XmZC3GqfDP
4545
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c=
4646
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
4747
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
48-
golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
49-
golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
48+
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
49+
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
5050
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
5151
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
5252
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=

0 commit comments

Comments
 (0)