Skip to content

Commit 0499de3

Browse files
authored
Merge pull request #3261 from github/henrymercer/setup-python
Set up Python in mergeback workflow
2 parents 8a06050 + 3b96745 commit 0499de3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/actions/release-initialise/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ runs:
1616
shell: bash
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
21-
python-version: 3.12
21+
python-version: '3.12'
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/post-release-mergeback.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
with:
4949
fetch-depth: 0 # ensure we have all tags and can push commits
5050
- uses: actions/setup-node@v6
51+
- uses: actions/setup-python@v6
52+
with:
53+
python-version: '3.12'
5154

5255
- name: Update git config
5356
run: |

0 commit comments

Comments
 (0)