Skip to content

Commit e8d68b9

Browse files
chore(deps): update dependency python
1 parent 22f1506 commit e8d68b9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# Because of this the network configuration changes from host based network to a container network.
2323
ruff:
2424
runs-on: ubuntu-24.04
25-
container: python:3.13-slim-bookworm
25+
container: python:3.14-slim-bookworm
2626

2727
steps:
2828
- name: Checkout Code Repository
@@ -37,7 +37,7 @@ jobs:
3737
3838
black:
3939
runs-on: ubuntu-24.04
40-
container: python:3.13-slim-bookworm
40+
container: python:3.14-slim-bookworm
4141

4242
steps:
4343
- name: Checkout Code Repository
@@ -61,7 +61,7 @@ jobs:
6161
- name: Set up Python
6262
uses: actions/setup-python@v5
6363
with:
64-
python-version: "3.13"
64+
python-version: "3.14"
6565
cache: "pip" # caching pip dependencies
6666

6767
- name: Install dependencies
@@ -172,7 +172,7 @@ jobs:
172172
needs: [ruff, black, stylelint, eslint, prettier, djlint]
173173

174174
container:
175-
image: python:3.13-slim-bookworm
175+
image: python:3.14-slim-bookworm
176176

177177
services:
178178
postgres:
@@ -259,7 +259,7 @@ jobs:
259259
- name: Set up Python
260260
uses: actions/setup-python@v5
261261
with:
262-
python-version: "3.13"
262+
python-version: "3.14"
263263
cache: "poetry"
264264
cache-dependency-path: "poetry.lock"
265265

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN npm run build:prod
2626
# use python:3.13-slim-bookworm as the base image for production
2727
#################################################################################
2828

29-
FROM python:3.13-slim-bookworm AS production
29+
FROM python:3.14-slim-bookworm AS production
3030

3131
# Add user that will be used in the container
3232
RUN groupadd --system django && \

0 commit comments

Comments
 (0)