K8SPXC-1699 Update PXC image for PXC operator 1.19.0 #33
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: Validate Operator Image Hashes | |
| on: | |
| pull_request: | |
| paths: | |
| - 'sources/operator*.json' | |
| - '!sources/operator*.dep.json' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - run: pip install requests | |
| - name: Validate | |
| run: | | |
| for file in $(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep '^sources/operator.*\.json$' | grep -v '\.dep\.json$'); do | |
| python .github/workflows/images_hash_check.py -f "$file" | |
| done | |