chore(deps): update camunda/zeebe docker tag to v8.5.3 #928
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
# Mimic postUpgradeTasks which is only available for self-hosted Renovate instances. | |
# https://docs.renovatebot.com/configuration-options/#postupgradetasks | |
name: Renovate - Post Upgrade Tasks | |
on: | |
push: | |
branches: | |
- 'renovate/*' | |
paths: | |
- 'charts/camunda-platform*/Chart.yaml' | |
- 'charts/camunda-platform*/values.yaml' | |
- 'charts/camunda-platform*/templates/**' | |
- 'charts/camunda-platform*/charts/**' | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: Update golden files | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Generate GitHub token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2 | |
id: generate-github-token | |
with: | |
app_id: ${{ secrets.GH_APP_ID_DISTRO_CI }} | |
private_key: ${{ secrets.GH_APP_PRIVATE_KEY_DISTRO_CI }} | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
token: '${{ steps.generate-github-token.outputs.token }}' | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 | |
with: | |
go-version-file: charts/camunda-platform-latest/go.mod | |
cache: false | |
- uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3 | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
~/.asdf/installs/golang/*/packages/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Update golden files | |
run: make go.update-golden-only | |
- name: Install readme-generator-for-helm | |
run: npm install -g @bitnami/readme-generator-for-helm | |
- name: Update README | |
run: make helm.readme-update | |
- name: Git pull | |
run: git pull --rebase --autostash . | |
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4 | |
with: | |
author_name: "renovate[bot]" | |
author_email: "29139614+renovate[bot]@users.noreply.github.com" | |
message: "chore(deps): post upgrade tasks - update golden files" |