update-istio-operator-version #57
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-istio-operator-version" | |
on: | |
workflow_dispatch: | |
schedule: | |
# every Monday at around 3 am pacific/10 am UTC | |
- cron: "0 10 * * 1" | |
env: | |
GOPROXY: https://proxy.golang.org | |
GO_VERSION: '1.23.0' | |
permissions: | |
contents: read | |
jobs: | |
bump-istio-operator-version: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
- name: Bump istio-operator version | |
id: bumpIstioOperator | |
run: | | |
echo "OLD_VERSION=$(DEP=istio-operator make get-dependency-version)" >> "$GITHUB_OUTPUT" | |
make update-istio-operator-version | |
echo "NEW_VERSION=$(DEP=istio-operator 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 | |
if: ${{ steps.bumpIstioOperator.outputs.changes != '' }} | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f | |
with: | |
token: ${{ secrets.MINIKUBE_BOT_PAT }} | |
commit-message: 'Addon istio-provisioner: Update istio/operator image from ${{ steps.bumpIstioOperator.outputs.OLD_VERSION }} to ${{ steps.bumpIstioOperator.outputs.NEW_VERSION }}' | |
committer: minikube-bot <minikube-bot@google.com> | |
author: minikube-bot <minikube-bot@google.com> | |
branch: auto_bump_istio_operator_version | |
push-to-fork: minikube-bot/minikube | |
base: master | |
delete-branch: true | |
title: 'Addon istio-provisioner: Update istio/operator image from ${{ steps.bumpIstioOperator.outputs.OLD_VERSION }} to ${{ steps.bumpIstioOperator.outputs.NEW_VERSION }}' | |
labels: ok-to-test | |
body: | | |
The [istio](https://github.com/istio/istio) project released a new istio/operator image | |
This PR was auto-generated by `make update-istio-operator-version` using [update-istio-operator-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-istio-operator-version.yml) CI Workflow. |