Skip to content

chore(deps): update dependency @modelcontextprotocol/sdk #476

chore(deps): update dependency @modelcontextprotocol/sdk

chore(deps): update dependency @modelcontextprotocol/sdk #476

Workflow file for this run

name: builder
on:
push:
branches:
- main
- "releases/**"
- "stable/**"
paths:
- .config/mise*.toml
- .dockerignore
- .pre-commit-config.yaml
- .python-version
- Containerfile
- package*.json
- pyproject.toml
- tools/builder.sh
- uv.lock
pull_request:
types: [synchronize, opened, reopened]
branches: ["main", "devel/*"]
paths:
- .config/mise*.toml
- .dockerignore
- .pre-commit-config.yaml
- .python-version
- Containerfile
- package*.json
- pyproject.toml
- tools/builder.sh
- uv.lock
jobs:
builder-image:
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push container image
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./tools/builder.sh ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && '--push' || '' }}