fix: add generation field to ClowdApp status in deploy templates #3648
Workflow file for this run
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: Go | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**/*.adoc' | |
| - '.github/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| golangci: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Display build environment | |
| run: printenv | |
| - uses: actions/setup-go@v5 | |
| name: Set up Go 1.x | |
| with: | |
| go-version: "1.25.3" | |
| env: | |
| GO111MODULE: off | |
| - uses: actions/checkout@v4 | |
| name: Checkout clowder | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.4.0 | |