Renovate #1499
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: Renovate | |
| on: | |
| schedule: | |
| - cron: '0 * * * *' | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'argoproj/argo-cd' | |
| steps: | |
| - name: Get token | |
| id: get_token | |
| uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1 | |
| with: | |
| app-id: ${{ vars.RENOVATE_APP_ID }} | |
| private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }} | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0 | |
| # Some codegen commands require Go to be setup | |
| - name: Setup Golang | |
| uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 | |
| with: | |
| # renovate: datasource=golang-version packageName=golang | |
| go-version: 1.25.3 | |
| - name: Self-hosted Renovate | |
| uses: renovatebot/github-action@a3c115cd6676c8a5bc72f9715f108759e570daf5 #43.0.19 | |
| with: | |
| configurationFile: .github/configs/renovate-config.js | |
| token: '${{ steps.get_token.outputs.token }}' | |
| env: | |
| LOG_LEVEL: 'debug' | |
| RENOVATE_REPOSITORIES: '${{ github.repository }}' |