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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
cache: "poetry"
cache-dependency-path: "poetry.lock"

Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
cache: "poetry"
cache-dependency-path: "poetry.lock"

Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"

- name: "Download coverage data"
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
cache: "pip"

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN npm run build:prod
# use python:3.13-slim-bookworm as the base image for production
#################################################################################

FROM python:3.13-slim-bookworm AS production
FROM python:3.14-slim-bookworm AS production

# Add user that will be used in the container
RUN groupadd --system django && \
Expand Down
Loading