chore(deps): update renovatebot/github-action action to v46.1.15 #2428
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: validate | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| concurrency: | |
| group: validate-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| name: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 2 | |
| - name: Run all checks (lint + generator freshness in parallel) | |
| uses: dagger/dagger-for-github@v8.4.1 | |
| with: | |
| version: "v0.21.4" | |
| verb: check | |
| args: go:lint kclipper:lint-prettier kclipper:lint-actions kclipper:lint-releaser kclipper:lint-kclmodules go:generate go:tidy | |
| cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| enable-github-summary: "true" | |
| - name: Export coverage profile | |
| uses: dagger/dagger-for-github@v8.4.1 | |
| with: | |
| version: "v0.21.4" | |
| call: go test-coverage --output=coverage.txt | |
| cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| enable-github-summary: "true" | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |