Select stops on map fixes #4686
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: Check image versions | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check_image_versions: | |
| name: Check if the image versions match in custom and e2e docker compose files. | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Verify that image version checking script does not find any mismatches | |
| run: scripts/verify-image-versions-match.sh |