chore(Dependabot-gitsubmodule): bump kwok/host-operator from 2b06cc8
to f35e54f
#713
Workflow file for this run
This file contains 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 | |
"on": | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
gitlint: | |
name: Run gitlint checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: pip install -r requirements.lock | |
- name: Run gitlint on CI with pre-commit | |
run: >- | |
gitlint --commits origin/${{ github.event.pull_request.base.ref | |
}}..HEAD | |
check-same-go-toolset: | |
name: Check the same Go Toolset image is used everywhere | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run check-same-go-toolset script | |
run: >- | |
bash chore-scripts/check-same-go-toolset.sh |