chore: Wave 9 engineering cleanup and Wave E/11/13 delivery #505
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
| # SPDX-License-Identifier: Apache-2.0 | |
| # Validates workflow YAML (expressions, permissions, runner labels). | |
| name: Actionlint | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Pinned image tag (not :latest) for reproducible lint runs. | |
| - name: Check workflows | |
| shell: bash | |
| run: | | |
| docker run --rm \ | |
| -v "${GITHUB_WORKSPACE}:/workspace" \ | |
| -w /workspace \ | |
| rhysd/actionlint:1.7.12 \ | |
| -color \ | |
| -ignore 'the runner of ".+" action is too old to run on GitHub Actions' \ | |
| -ignore 'property ".+" is not defined in object type' \ | |
| -ignore 'shellcheck reported issue in this script: SC2086:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2046:warning:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2034:warning:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2004:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2129:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2116:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2016:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2317:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2181:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2162:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2035:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2015:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC1078:warning:' \ | |
| -ignore 'shellcheck reported issue in this script: SC1079:info:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2155:warning:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2001:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2005:style:' \ | |
| -ignore 'shellcheck reported issue in this script: SC2009:info:' \ | |
| -ignore 'input ".+" is not defined in action' |