dependency-updater #1000
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dependency-updater | |
on: | |
schedule: | |
- cron: '0 12 * * *' | |
workflow_dispatch: | |
jobs: | |
update-latest-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.11 | |
- name: Update Dependencies File | |
run: go run ./hack/dependencies.go update | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@284f54f989303d2699d373481a0cfa13ad5a6666 | |
with: | |
token: ${{ secrets.CARVEL_BOT_ACCESS_TOKEN }} | |
committer: Carvel Bot <[email protected]> | |
author: Carvel Bot <[email protected]> | |
commit-message: | | |
Bump dependencies | |
Signed-off-by: Carvel Bot <[email protected]> | |
title: Bump dependencies | |
delete-branch: true | |
body: | | |
Auto-generated by https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} | |
Signed-off-by: Carvel Bot <[email protected]> | |
base: develop | |
branch: bump-dependencies |