Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,17 +142,17 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push ${{ matrix.image }} (${{ matrix.arch }})
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ${{ matrix.file }}
Expand All @@ -171,7 +171,7 @@ jobs:
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
python-version: '3.13'

- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

- name: Build wheel and source distribution
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conventional-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request_target' && github.event.pull_request.user.type != 'Bot'
steps:
- uses: bcoe/conventional-release-labels@b503ca473654e07521c051628c5f1f969e7436da # v1
- uses: bcoe/conventional-release-labels@886f696738527c7be444262c327c89436dfb95a8 # v1.3.1
with:
type_labels: '{"feat": "enhancement","fix": "bug","docs": "documentation","style": "style","refactor": "refactor","perf": "performance","test": "test","chore": "chore","build": "build"}'

8 changes: 4 additions & 4 deletions .github/workflows/deploy-docs-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ jobs:

- name: Create Build Success Comment
if: success()
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{ github.event.pull_request.number }}
body: "${{ env.BUILD_SUCCESS_COMMENT }}"
reactions: rocket

- name: Create Build Failure Comment
if: failure()
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Expand All @@ -162,7 +162,7 @@ jobs:
- name: Find Comment
id: fc
if: success()
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Build successful!
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:

- name: Update Comment
if: ${{ steps.fc.outputs.comment-id != '' }}
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
body: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: '3.12'

- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v7

- name: Extract version from pyproject.toml
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-sdk-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: '3.12'

- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v7

- name: Extract version from pyproject.toml
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up UV
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7
with:
version: latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
ls -la

- name: Set up UV
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7
with:
version: latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-uv-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
python-version: '3.13'

- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

- name: Update uv.lock
run: uv sync
Expand Down
Loading