Skip to content

chore: deps(github): bump Action release for actions/setup-go from d3... #26477

chore: deps(github): bump Action release for actions/setup-go from d3...

chore: deps(github): bump Action release for actions/setup-go from d3... #26477

Workflow file for this run

name: updatecli
on:
workflow_dispatch:
push:
pull_request:
schedule:
# * is a special character in YAML so you have to quote this string
# Run every hour
- cron: '0 * * * *'
jobs:
updatecli:
runs-on: ubuntu-24.04
steps:
- name: "Checkout"
uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v6.0.1
- name: "Setup updatecli"
uses: "updatecli/updatecli-action@8f0738d06280ebe457c8d044993d707e1358aacb" # v2
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
check-latest: true
id: go
- name: Install Swagger
run: "go install github.com/swaggo/swag/cmd/swag@$SWAGGER_VERSION"
env:
SWAGGER_VERSION: v1.16.6
- name: "Run updatecli in dryrun"
run: "updatecli compose diff"
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
id: generate_token
if: github.ref == 'refs/heads/main'
with:
app_id: ${{ secrets.UPDATECLIBOT_APP_ID }}
private_key: ${{ secrets.UPDATECLIBOT_APP_PRIVKEY }}
- name: "Login Udash"
if: github.ref == 'refs/heads/main'
run: "updatecli udash login --experimental $UPDATECLI_UDASH_URL"
env:
UPDATECLI_UDASH_API_URL: ${{ secrets.UPDATECLI_UDASH_API_URL }}
UPDATECLI_UDASH_ACCESS_TOKEN: ${{ secrets.UPDATECLI_UDASH_ACCESS_TOKEN }}
UPDATECLI_UDASH_URL: ${{ secrets.UPDATECLI_UDASH_URL }}
- name: "Run updatecli"
if: github.ref == 'refs/heads/main'
run: "updatecli compose apply --experimental"
env:
GITHUB_ACTOR: ${{ secrets.UPDATECLI_BOT_GITHUB_ACTOR }}
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}