Update go mod validation workflow to work with latest action #37
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 Go Mod Files | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| go-mod-validation: | |
| name: Validate go.mod dependencies | |
| runs-on: ubuntu-latest | |
| # Skip on merge group events | |
| if: ${{ github.event_name == 'pull_request' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate go.mod | |
| uses: smartcontractkit/.github/apps/go-mod-validator@dx-2266/go-mod-validator-fix # TODO |