-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically update the Golang dependencies using a CRON (#14891)
Signed-off-by: Florent Poinsard <[email protected]>
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Update Golang Dependencies | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # Runs every day at midnight UTC | ||
workflow_dispatch: | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
update_golang_deps: | ||
if: github.repository == 'vitessio/vitess' | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
name: Update Golang Dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.5 | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
|
||
- name: Upgrade the Golang Dependencies | ||
id: detect-and-update | ||
run: | | ||
go get -u ./... | ||
output=$(git status -s) | ||
if [ -z "${output}" ]; then | ||
exit 0 | ||
fi | ||
go mod tidy | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
branch: "upgrade-go-deps-on-main" | ||
commit-message: "upgrade go deps" | ||
signoff: true | ||
delete-branch: true | ||
title: "Upgrade the Golang Dependencies" | ||
body: | | ||
This Pull Request updates all the Goland dependencies to their latest version using `go get -u ./...`. | ||
base: main | ||
labels: | | ||
go | ||
dependencies | ||
Component: General | ||
Type: Internal Cleanup |