Wire worker_commands namespace capability #7407
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 Release Dependencies | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "release/**" | |
| - "cloud/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: "go.mod" | |
| check-latest: true | |
| cache: true | |
| - name: Validate dependency versions for PR base branch | |
| run: >- | |
| go run ./cmd/tools/check-dependencies | |
| --base-branch "${{ github.event.pull_request.base.ref }}" |