Update Go Dependencies #117
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: Update Go Dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
go_dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'manageiq-operator/go.mod' | |
- name: Update all dependencies | |
run: | | |
go get -t -u ./... | |
go mod tidy | |
working-directory: ./manageiq-operator | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
add-paths: | | |
manageiq-operator/go.mod | |
manageiq-operator/go.sum | |
commit-message: Update go dependencies | |
branch: update_go_dependencies | |
assignees: bdunne | |
author: ManageIQ Bot <[email protected]> | |
committer: ManageIQ Bot <[email protected]> | |
delete-branch: true | |
labels: dependencies | |
push-to-fork: miq-bot/manageiq-pods | |
title: Update go dependencies | |
body: Update the operator dependencies in go.mod | |
token: ${{ secrets.PR_TOKEN }} |