File tree Expand file tree Collapse file tree 5 files changed +573
-432
lines changed Expand file tree Collapse file tree 5 files changed +573
-432
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ jobs:
15
15
- name : Set up Python
16
16
uses : actions/setup-python@v2
17
17
with :
18
- python-version : " 3.11 "
18
+ python-version : " 3.13 "
19
19
20
20
- uses : actions/cache@v4
21
21
with :
22
22
path : ~/.cache/pip
23
- key : pip-3.11 -${{ hashFiles('poetry.lock') }}
23
+ key : pip-3.13 -${{ hashFiles('poetry.lock') }}
24
24
25
25
- name : Install poetry
26
26
uses : abatilo/actions-poetry@v2
27
27
with :
28
- poetry-version : 1.8.2
28
+ poetry-version : 1.8.5
29
29
30
30
- name : Install Dependencies
31
31
run : poetry install
@@ -44,17 +44,17 @@ jobs:
44
44
- name : Set up Python
45
45
uses : actions/setup-python@v2
46
46
with :
47
- python-version : " 3.11 "
47
+ python-version : " 3.13 "
48
48
49
49
- uses : actions/cache@v4
50
50
with :
51
51
path : ~/.cache/pip
52
- key : pip-3.11 -${{ hashFiles('poetry.lock') }}
52
+ key : pip-3.13 -${{ hashFiles('poetry.lock') }}
53
53
54
54
- name : Install poetry
55
55
uses : abatilo/actions-poetry@v2
56
56
with :
57
- poetry-version : 1.8.2
57
+ poetry-version : 1.8.5
58
58
59
59
- name : Install Dependencies
60
60
run : poetry install
@@ -70,17 +70,17 @@ jobs:
70
70
- name : Set up Python
71
71
uses : actions/setup-python@v2
72
72
with :
73
- python-version : " 3.11 "
73
+ python-version : " 3.13 "
74
74
75
75
- uses : actions/cache@v4
76
76
with :
77
77
path : ~/.cache/pip
78
- key : pip-3.11 -${{ hashFiles('poetry.lock') }}
78
+ key : pip-3.13 -${{ hashFiles('poetry.lock') }}
79
79
80
80
- name : Install poetry
81
81
uses : abatilo/actions-poetry@v2
82
82
with :
83
- poetry-version : 1.8.2
83
+ poetry-version : 1.8.5
84
84
85
85
- name : Install Dependencies
86
86
run : poetry install
Original file line number Diff line number Diff line change 1
- FROM python:3.11 -slim
1
+ FROM python:3.13 -slim
2
2
3
3
ENV VIRTUAL_ENV=/venv
4
4
@@ -7,7 +7,7 @@ RUN useradd calmerge --create-home && mkdir /app $VIRTUAL_ENV && chown -R calmer
7
7
WORKDIR /app
8
8
9
9
# Install poetry at the system level
10
- RUN pip install --no-cache poetry==1.8.2
10
+ RUN pip install --no-cache poetry==1.8.5
11
11
12
12
USER calmerge
13
13
You can’t perform that action at this time.
0 commit comments