The newly added gobump was using the default token but this one is not configured with all required permissions for this repo. This was causing tests not being executed on github.
22 lines
529 B
YAML
22 lines
529 B
YAML
---
|
|
name: "Updates Go dependencies via gobump"
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Every Sunday at 15:00
|
|
- cron: "0 15 * * 0"
|
|
|
|
jobs:
|
|
bump-deps-ubuntu:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run gobump-deps action
|
|
uses: lzap/gobump@main
|
|
with:
|
|
go_version: "1.23.9"
|
|
token: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}
|
|
exec_pr: ./tools/prepare-source.sh
|