Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v5
|
|
|
|
- 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
|