Raise minimum supported dbt-core version to 1.8 #417
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
| # Validates all workflow YAML files (syntax, duplicate keys, etc.) so that invalid | |
| # workflows are caught before merge. Runs in a separate file so it still runs even | |
| # when another workflow (e.g. test.yml) has parse errors and would not run at all. | |
| name: Validate workflow files | |
| on: | |
| push: | |
| branches: [main] | |
| paths: [".github/workflows/**"] | |
| pull_request: | |
| branches: [main, 'release-*'] | |
| paths: [".github/workflows/**"] | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Validate workflow files | |
| uses: reviewdog/action-actionlint@d63ba7532e0942965320cd8d73cbae4c7b3c5283 # v1.73.1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-check | |
| level: error |