Skip to content

Commit 463e552

Browse files
committed
Upgrade Python version to 3.14 in Dockerfile and GitHub Actions workflow
1 parent ff25709 commit 463e552

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/base-python-service-jobs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Python
4242
uses: actions/setup-python@v6
4343
with:
44-
python-version: 3.9
44+
python-version: 3.14
4545
- name: Run Unit tests
4646
run: |
4747
./tasks test_unit
@@ -56,10 +56,10 @@ jobs:
5656
steps:
5757
- uses: actions/checkout@v6
5858

59-
- name: Set up Python 3.9
59+
- name: Set up Python 3.14
6060
uses: actions/setup-python@v6
6161
with:
62-
python-version: 3.9
62+
python-version: 3.14
6363

6464
- name: Configure AWS credentials
6565
id: auth

services/mesh-forwarder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-alpine3.22
1+
FROM python:3.14-alpine3.23
22

33
RUN apk update && \
44
apk -u list && \

0 commit comments

Comments
 (0)