Update Core dependencies (non-major) #462
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: Verify List Of Implicit Imports | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-list-of-implicit-imports: | |
| name: Run Verification | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Update List Of Implicit Imports | |
| run: ./scripts/update_implicit_types.sh | |
| - name: Check if list is up-to-date | |
| run: | | |
| set -euo pipefail | |
| if [[ -n "$(git status --porcelain | grep protoc-gen/common/src/main/resources/implicit-imports/)" ]]; then | |
| echo "List of implicit imports is not up to date. Please run './scripts/update_implicit_types.sh' and commit changes" | |
| git status --porcelain | |
| git diff --minimal | cat | |
| exit 1 | |
| fi |