chore(deps): update actions/checkout action to v4.1.5 #7
Workflow file for this run
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 system-upgrade-controller-crds | |
on: | |
pull_request: | |
paths: | |
- charts/system-upgrade-controller-crds/Chart.yaml | |
- .github/workflows/update-system-upgrade-controller-crds.yml | |
permissions: | |
contents: write | |
jobs: | |
update-crds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.BOT_CHART_UPDATE_TOKEN }} | |
- name: Remove files | |
run: rm charts/system-upgrade-controller-crds/templates/* | |
- name: Download new files | |
run: | | |
# renovate: datasource=github-releases depName=rancher/system-upgrade-controller | |
export VERSION="0.13.4" | |
curl --silent -Lo charts/system-upgrade-controller-crds/templates/crd.yaml https://github.com/rancher/system-upgrade-controller/releases/download/v${VERSION}/crd.yaml | |
- name: Commit updated files | |
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4 | |
with: | |
message: "chore(deps): update system-upgrade-controller-crds" | |
pull: "--rebase --autostash" | |
author_name: Community Tooling Bot | |
author_email: community-tooling@maurice-meyer.de |