61 lines
2.8 KiB
YAML
61 lines
2.8 KiB
YAML
name: "update-golang-versions"
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# every Monday at around 2 am pacific/9 am UTC
|
|
- cron: "0 9 * * 1"
|
|
env:
|
|
GOPROXY: https://proxy.golang.org
|
|
GO_VERSION: '1.23.2'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
bump-golang-version:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
|
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
- name: Bump Golang Versions
|
|
id: bumpGolang
|
|
run: |
|
|
echo "OLD_VERSION=$(DEP=go make get-dependency-version)" >> "$GITHUB_OUTPUT"
|
|
make update-golang-version
|
|
echo "NEW_VERSION=$(DEP=go make get-dependency-version)" >> "$GITHUB_OUTPUT"
|
|
# The following is to support multiline with GITHUB_OUTPUT, see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
|
|
echo "changes<<EOF" >> "$GITHUB_OUTPUT"
|
|
echo "$(git status --porcelain)" >> "$GITHUB_OUTPUT"
|
|
echo "EOF" >> "$GITHUB_OUTPUT"
|
|
- name: Create PR
|
|
id: createPR
|
|
if: ${{ steps.bumpGolang.outputs.changes != '' }}
|
|
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f
|
|
with:
|
|
token: ${{ secrets.MINIKUBE_BOT_PAT }}
|
|
commit-message: 'Update go from ${{ steps.bumpGolang.outputs.OLD_VERSION }} to ${{ steps.bumpGolang.outputs.NEW_VERSION }}'
|
|
committer: minikube-bot <minikube-bot@google.com>
|
|
author: minikube-bot <minikube-bot@google.com>
|
|
branch: auto_bump_golang_version
|
|
branch-suffix: short-commit-hash
|
|
push-to-fork: minikube-bot/minikube
|
|
base: master
|
|
delete-branch: true
|
|
title: 'Update go from ${{ steps.bumpGolang.outputs.OLD_VERSION }} to ${{ steps.bumpGolang.outputs.NEW_VERSION }}'
|
|
body: |
|
|
Kubernetes Project just updated the [golang version](https://github.com/kubernetes/kubernetes/blob/master/build/build-image/cross/VERSION), updating minikube golang to match Kubernetes.
|
|
|
|
This PR was auto-generated by `make update-golang-version` using [update-golang-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-golang-version.yml) CI Workflow.
|
|
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
|
|
if: ${{ steps.bumpGolang.outputs.changes != '' }}
|
|
with:
|
|
github-token: ${{ secrets.MINIKUBE_BOT_PAT }}
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: ${{ steps.createPR.outputs.pull-request-number }},
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: 'ok-to-build-image'
|
|
})
|