Skip to content

Commit 583757b

Browse files
update cron actions versions (#8)
* update actions/cache to v4 * update python version * upgrade python dependencies
1 parent ba6b26f commit 583757b

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/cron.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.7]
13+
python-version: ['3.13.2']
14+
1415
steps:
1516
- uses: actions/checkout@v2
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v5
1819
with:
1920
python-version: ${{ matrix.python-version }}
2021
- name: Cache pip
21-
uses: actions/cache@v1
22+
uses: actions/cache@v4
2223
with:
2324
path: ~/.cache/pip
2425
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
arrow==0.14.7
2-
ics==0.7
3-
jours-feries-france==0.7.0
4-
numpy==1.18.2
5-
pandas==1.0.3
6-
python-dateutil==2.8.1
7-
python-slugify==4.0.0
8-
pytz==2019.3
9-
six==1.14.0
10-
TatSu==4.4.0
11-
text-unidecode==1.3
1+
arrow>=1.2.3
2+
ics>=0.7.2
3+
jours-feries-france>=0.7.0
4+
numpy>=1.24.0
5+
pandas>=2.0.0
6+
python-dateutil>=2.8.2
7+
python-slugify>=8.0.0
8+
pytz>=2023.3
9+
six>=1.16.0
10+
TatSu>=5.8.3
11+
text-unidecode>=1.3

0 commit comments

Comments
 (0)