bump #144
This file contains hidden or 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: bump | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| kubernetes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| - run: ./hack/bump/kubernetes.sh | |
| - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| push-to-fork: vexxhost-bot/magnum-cluster-api | |
| commit-message: "chore(deps): update kubernetes" | |
| signoff: true | |
| title: "chore(deps): update kubernetes" | |
| body: | | |
| ## Automated Kubernetes Version Update | |
| This PR updates the Kubernetes versions in the CI workflow to the latest maintained versions. | |
| Source: https://endoflife.date/kubernetes | |
| delete-branch: true | |
| branch: bump/kubernetes | |
| cloud-provider-openstack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt-get install patchutils | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| - run: ./hack/bump/cloud-provider-openstack.sh | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| push-to-fork: vexxhost-bot/magnum-cluster-api | |
| commit-message: "chore(deps): update cloud-provider-openstack" | |
| signoff: true | |
| title: "chore(deps): update cloud-provider-openstack" | |
| body: | | |
| ## Automated `cloud-provider-openstack` update | |
| This PR updates the `cloud-provider-openstack` images to the latest versions. | |
| delete-branch: true | |
| branch: bump/cloud-provider-openstack | |
| cluster-autoscaler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| - run: ./hack/bump/cluster-autoscaler.sh | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| token: ${{ secrets.VEXXHOST_BOT_PAT }} | |
| push-to-fork: vexxhost-bot/magnum-cluster-api | |
| commit-message: "chore(deps): update cluster-autoscaler" | |
| signoff: true | |
| title: "chore(deps): update cluster-autoscaler" | |
| body: | | |
| ## Automated `cluster-autoscaler` update | |
| This PR updates the `cluster-autoscaler` images to the latest versions. | |
| delete-branch: true | |
| branch: bump/cluster-autoscaler |