name: "update-golint-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.19.3' permissions: contents: read jobs: bump-golint-version: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f with: go-version: ${{env.GO_VERSION}} cache: true cache-dependency-path: ./go.sum - name: Bump Golint Versions id: bumpGolint run: | make update-golint-version # 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<> $GITHUB_OUTPUT echo "$(git status --porcelain)" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - name: Create PR if: ${{ steps.bumpGolint.outputs.changes != '' }} uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 with: token: ${{ secrets.MINIKUBE_BOT_PAT }} commit-message: bump golint versions committer: minikube-bot author: minikube-bot branch: auto_bump_golint_version push-to-fork: minikube-bot/minikube base: master delete-branch: true title: 'bump golint version' labels: ok-to-test body: | Golangci-lint Project released a [new version](https://github.com/golangci/golangci-lint/releases), This PR was auto-generated by `make update-golint-version` using [update-golint-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-golint-version.yml) CI Workflow.