Skip to content

Automatically update the Golang dependencies using a CRON #1

Automatically update the Golang dependencies using a CRON

Automatically update the Golang dependencies using a CRON #1

name: Update Golang Dependencies
on:
pull_request:
schedule:
- cron: "0 0 * * *" # Runs every day at midnight UTC
workflow_dispatch:
permissions: read-all
jobs:
update_golang_version:
# if: github.repository == 'vitessio/vitess'
permissions:
contents: write
pull-requests: write
strategy:
matrix:
branch: [ main, release-18.0, release-17.0, release-16.0 ]
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: ${{ matrix.branch }}
- name: Upgrade the Golang Dependencies
id: detect-and-update
run: |
go get -u ./...
output=$(git status -s)
if [ -z "${output}" ]; then
exit 0
fi
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
branch: "upgrade-go-deps-on-${{ matrix.branch }}"
commit-message: "upgrade go deps"
signoff: true
delete-branch: true
title: "[${{ matrix.branch }}] Upgrade the Golang Dependencies"
body: |
This Pull Request updates all the Goland dependencies to their latest version using `go get -u ./...`.
base: ${{ matrix.branch }}
labels: |
go
dependencies
Component: General
Type: Internal Cleanup