Skip to content

Commit e7f69de

Browse files
authored
Merge pull request #681 from gerrod3/correct-python-action
Update setup-python action to v5 & python3.11 [3.21]
2 parents 84e1ad5 + eece6dc commit e7f69de

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/pr_build_images.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
# by default, it uses a depth of 1
1818
# this fetches all history so that we can read each commit
1919
fetch-depth: 0
20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: 3.11
2123

2224
- name: Check commit message
2325
if: github.event_name == 'pull_request'
@@ -53,6 +55,9 @@ jobs:
5355
tag: "3.21-https"
5456
steps:
5557
- uses: actions/checkout@v4
58+
- uses: actions/setup-python@v5
59+
with:
60+
python-version: 3.11
5661
- name: Set https build args
5762
if: contains(fromJSON('["4.6-https", "3.21-https"]'), matrix.tag)
5863
run: |

.github/workflows/publish_images.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
tag: "3.21-https"
2929
steps:
3030
- uses: actions/checkout@v4
31-
- uses: actions/setup-python@v4
31+
- uses: actions/setup-python@v5
32+
with:
33+
python-version: 3.11
3234
- name: Download s6-overlay
3335
run: |
3436
wget https://github.com/just-containers/s6-overlay/releases/download/v3.1.2.1/s6-overlay-x86_64.tar.xz

0 commit comments

Comments
 (0)