chore(Dependabot-docker): bump splunk/splunk from sha256:3b725dfd03691f75d453515d96a5987ebf3cd5e0776e5621f6ed4a10b3c0d49c to sha256:6e7ef6ff9c2051d2281dce1dc6619cd5b4b5c1b40316f22e4c6627c51d0a1c83 in /splunk #788
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
--- | |
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 |