Fix duplicate dependency #1
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: Maintenance » Ensure correct module versions in .gitmodules | |
| on: | |
| pull_request: | |
| paths: | |
| - '.gitmodules' | |
| push: | |
| paths: | |
| - '.gitmodules' | |
| jobs: | |
| mvn-check: | |
| name: Ensure correct module versions in .gitmodules | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: check .gitmodules has correct versions, the correct number of times | |
| run: | | |
| if [ 3 -ne "$(grep 'branch = ${{ github.base_ref }}' .gitmodules | wc -l)" ]; then | |
| exit 1 | |
| fi |