Skip to content

Commit 8ff1151

Browse files
chore(deps): update dependency python
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 49ec68d commit 8ff1151

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Set up Python
7070
uses: actions/setup-python@v6
7171
with:
72-
python-version: '3.13'
72+
python-version: '3.14'
7373

7474
- name: Install analysis tools
7575
run: |

.github/workflows/dependency-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v6
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.14'
3030

3131
- name: Update dependencies
3232
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v6
3434
with:
35-
python-version: '3.13'
35+
python-version: '3.14'
3636

3737
- name: Install build dependencies
3838
run: |

.github/workflows/security-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v6
2020
with:
21-
python-version: '3.13'
21+
python-version: '3.14'
2222

2323
- name: Run Snyk to check for vulnerabilities
2424
uses: snyk/actions/python@master
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Python
5252
uses: actions/setup-python@v6
5353
with:
54-
python-version: '3.13'
54+
python-version: '3.14'
5555

5656
- name: Install dependencies
5757
run: |
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set up Python
8080
uses: actions/setup-python@v6
8181
with:
82-
python-version: '3.13'
82+
python-version: '3.14'
8383

8484
- name: Install dependencies
8585
run: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Multi-stage build for MCP GitLab Server
2-
FROM python:3.13-slim as builder
2+
FROM python:3.14-slim as builder
33

44
# Install system dependencies
55
RUN apt-get update && apt-get install -y \
@@ -22,7 +22,7 @@ COPY pyproject.toml uv.lock ./
2222
RUN uv pip install --system --no-cache -e .
2323

2424
# Production stage
25-
FROM python:3.13-slim
25+
FROM python:3.14-slim
2626

2727
# Install runtime dependencies
2828
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)