Skip to content

Commit b6c9cc1

Browse files
lzapthozza
authored andcommitted
ci: add gobump action
1 parent 219c11e commit b6c9cc1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/gobump.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: "Updates Go dependencies via gobump"
3+
4+
on: # yamllint disable-line rule:truthy
5+
workflow_dispatch:
6+
schedule:
7+
# Every Sunday at 16:00
8+
- cron: "0 16 * * 0"
9+
10+
jobs:
11+
bump-deps-ubuntu:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Run gobump-deps action
18+
uses: lzap/gobump@main
19+
with:
20+
go_version: "1.23.9"
21+
token: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)