We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219c11e commit b6c9cc1Copy full SHA for b6c9cc1
.github/workflows/gobump.yaml
@@ -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