File tree Expand file tree Collapse file tree 4 files changed +659
-634
lines changed Expand file tree Collapse file tree 4 files changed +659
-634
lines changed Original file line number Diff line number Diff line change 10
10
- uses : actions/setup-python@v5
11
11
id : setup-python
12
12
with :
13
- python-version : " 3.12 "
13
+ python-version : " 3.13 "
14
14
- name : Install poetry
15
15
run : pipx install poetry
16
16
- uses : actions/cache@v4
27
27
- uses : actions/setup-python@v5
28
28
id : setup-python
29
29
with :
30
- python-version : " 3.12 "
30
+ python-version : " 3.13 "
31
31
- name : Install pandoc
32
32
run : sudo apt-get install -y pandoc
33
33
- name : Install poetry
Original file line number Diff line number Diff line change 1
1
# Creating a python base with shared environment variables
2
- FROM python:3.12.7 as base
2
+ FROM python:3.13.0 as base
3
3
ENV PIP_NO_CACHE_DIR=off \
4
4
PIP_DEFAULT_TIMEOUT=100 \
5
5
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
22
22
RUN $POETRY_HOME/bin/poetry install --without dev --no-root
23
23
24
24
# `production` stage uses the dependencies downloaded in the `base` stage
25
- FROM python:3.12.7 -slim as production
25
+ FROM python:3.13.0 -slim as production
26
26
27
27
# Install pandoc for markdown to Jira conversions.
28
28
RUN apt-get -y update && \
You can’t perform that action at this time.
0 commit comments