This repository was archived by the owner on Jul 23, 2026. It is now read-only.
chore(deps): update registry.access.redhat.com/ubi10/go-toolset docker tag to v1.26.5-1784784079 #2837
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: Checks | |
| "on": | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| generated-file-freshness: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| - name: Install node dependencies | |
| run: | | |
| make install-deps | |
| - name: Confirm file freshness | |
| run: | | |
| make ensure-fresh | |
| script-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| - name: Install shfmt | |
| run: | | |
| make install-shfmt | |
| - name: Confirm script formatting | |
| run: | | |
| make ensure-formatted | |
| yamllint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Lint YAML files | |
| run: yamllint generated/ templates/data.yaml |