Skip to content

Commit 8aa2774

Browse files
committed
chore: use Python 3.12 which is the default of Ubuntu 24.04
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 70d1f2d commit 8aa2774

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/sphinxbuild.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
user_manual:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
15-
- uses: actions/setup-python@v6
14+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
15+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
1616
with:
17-
python-version: '3.10'
17+
python-version: '3.12'
1818
cache: 'pip'
1919
- name: Install pip dependencies
2020
run: pip install -r requirements.txt
@@ -24,18 +24,18 @@ jobs:
2424
shell: bash
2525
run: tar czf /tmp/documentation.tar.gz -C user_manual/_build/html .
2626
- name: Upload static documentation
27-
uses: actions/upload-artifact@v5.0.0
27+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
2828
with:
2929
name: User manual.zip
3030
path: "/tmp/documentation.tar.gz"
3131

3232
user_manual-en:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
36-
- uses: actions/setup-python@v6
35+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
36+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
3737
with:
38-
python-version: '3.10'
38+
python-version: '3.12'
3939
cache: 'pip'
4040
- name: Install pip dependencies
4141
run: pip install -r requirements.txt
@@ -45,10 +45,10 @@ jobs:
4545
developer_manual:
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
49-
- uses: actions/setup-python@v6
48+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
49+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
5050
with:
51-
python-version: '3.10'
51+
python-version: '3.12'
5252
cache: 'pip'
5353
- name: Install pip dependencies
5454
run: pip install -r requirements.txt
@@ -58,18 +58,18 @@ jobs:
5858
shell: bash
5959
run: tar czf /tmp/documentation.tar.gz -C developer_manual/_build/html/com .
6060
- name: Upload static documentation
61-
uses: actions/upload-artifact@v5.0.0
61+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6262
with:
6363
name: Developer manual.zip
6464
path: "/tmp/documentation.tar.gz"
6565

6666
admin_manual:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
70-
- uses: actions/setup-python@v6
69+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
70+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
7171
with:
72-
python-version: '3.10'
72+
python-version: '3.12'
7373
cache: 'pip'
7474
- name: Install pip dependencies
7575
run: pip install -r requirements.txt
@@ -79,7 +79,7 @@ jobs:
7979
shell: bash
8080
run: tar czf /tmp/documentation.tar.gz -C admin_manual/_build/html/com .
8181
- name: Upload static documentation
82-
uses: actions/upload-artifact@v5.0.0
82+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8383
with:
8484
name: Administration manual.zip
8585
path: "/tmp/documentation.tar.gz"

0 commit comments

Comments
 (0)