Skip to content

Commit 30b1847

Browse files
committed
Update github actions and Python version to 3.13
1 parent 8514617 commit 30b1847

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,26 @@ jobs:
1111
deploy-book-appr:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

16-
# Install dependencies
17-
- name: Set up Python 3.11
18-
uses: actions/setup-python@v1
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
1918
with:
20-
python-version: 3.11
19+
python-version: '3.13'
2120

2221
- name: Install dependencies
2322
run: |
2423
pip install -r requirements.txt
2524
working-directory: .
26-
# Build the book
25+
2726
- name: Build the book
2827
run: |
2928
sphinx-build src/appr build -E
3029
working-directory: .
30+
3131
# Push the book's HTML to Infomaniak FTP
3232
- name: 📂 Sync files
33-
uses: SamKirkland/[email protected].0-beta
33+
uses: SamKirkland/[email protected].5
3434
with:
3535
server: 31826.ftp.infomaniak.com
3636
username: 31826_elliot
@@ -41,26 +41,26 @@ jobs:
4141
deploy-book-ens:
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v4
4545

46-
# Install dependencies
47-
- name: Set up Python 3.11
48-
uses: actions/setup-python@v1
46+
- name: Set up Python
47+
uses: actions/setup-python@v5
4948
with:
50-
python-version: 3.11
49+
python-version: '3.13'
5150

5251
- name: Install dependencies
5352
run: |
5453
pip install -r requirements.txt
5554
working-directory: .
56-
# Build the book
55+
5756
- name: Build the book
5857
run: |
5958
sphinx-build src/ens build -E
6059
working-directory: .
60+
6161
# Push the book's HTML to Infomaniak FTP
6262
- name: 📂 Sync files
63-
uses: SamKirkland/[email protected].0-beta
63+
uses: SamKirkland/[email protected].5
6464
with:
6565
server: 31826.ftp.infomaniak.com
6666
username: 31826_elliot

0 commit comments

Comments
 (0)