Update dependency @modelcontextprotocol/sdk to v1.25.2 [SECURITY] #2150
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: Changeset | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| concurrency: | |
| group: changeset-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'ignore-changeset') }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 # Include history so Changesets finds merge-base | |
| - name: Set up environment | |
| uses: ./.github/actions/setup | |
| - name: Check changeset | |
| run: npx changeset status --since=origin/${{ github.base_ref }} |