Skip to content

Commit edba5e2

Browse files
authored
Update setup-python github action to use Node 20 (#17442)
1 parent 030174b commit edba5e2

12 files changed

+18
-18
lines changed

.github/workflows/build-ddev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
tar --strip-components=1 -xzf - -C $PYAPP_REPO
109109
110110
- name: Set up Python ${{ env.PYTHON_VERSION }}
111-
uses: actions/setup-python@v4
111+
uses: actions/setup-python@v5
112112
with:
113113
python-version: ${{ env.PYTHON_VERSION }}
114114

@@ -265,7 +265,7 @@ jobs:
265265
uses: actions/checkout@v4
266266

267267
- name: Set up Python ${{ env.PYTHON_VERSION }}
268-
uses: actions/setup-python@v4
268+
uses: actions/setup-python@v5
269269
with:
270270
python-version: ${{ env.PYTHON_VERSION }}
271271

@@ -368,7 +368,7 @@ jobs:
368368
uses: actions/checkout@v4
369369

370370
- name: Set up Python ${{ env.PYTHON_VERSION }}
371-
uses: actions/setup-python@v4
371+
uses: actions/setup-python@v5
372372
with:
373373
python-version: ${{ env.PYTHON_VERSION }}
374374

.github/workflows/cache-shared-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Set up Python ${{ env.PYTHON_VERSION }}
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
id: python
2727
with:
2828
python-version: "${{ env.PYTHON_VERSION }}"

.github/workflows/compute-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ref: "${{ github.event.pull_request.head.sha }}"
3232

3333
- name: Set up Python ${{ env.PYTHON_VERSION }}
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: "${{ env.PYTHON_VERSION }}"
3737

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: 0
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: '3.11'
3636
cache: 'pip'

.github/workflows/pr-quick-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# ref: "${{ github.event.pull_request.head.sha }}"
2929

3030
- name: Set up Python ${{ env.PYTHON_VERSION }}
31-
uses: actions/setup-python@v4
31+
uses: actions/setup-python@v5
3232
with:
3333
python-version: "${{ env.PYTHON_VERSION }}"
3434

.github/workflows/release-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.11'
1919

.github/workflows/release-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.11'
1919

.github/workflows/release-hash-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: '3.11'
2323

.github/workflows/run-validations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
fetch-depth: "0"
123123

124124
- name: Set up Python ${{ env.PYTHON_VERSION }}
125-
uses: actions/setup-python@v4
125+
uses: actions/setup-python@v5
126126
with:
127127
python-version: "${{ env.PYTHON_VERSION }}"
128128

.github/workflows/test-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
shell: bash
132132

133133
- name: Set up Python ${{ env.PYTHON_VERSION }}
134-
uses: actions/setup-python@v4
134+
uses: actions/setup-python@v5
135135
with:
136136
python-version: "${{ env.PYTHON_VERSION }}"
137137

.github/workflows/update-agent-changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ref: master
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: "3.11"
2222
- name: Install ddev from local folder
@@ -54,12 +54,12 @@ jobs:
5454
Finalize Agent release ${{ env.AGENT_VERSION }} updating the changelog files.
5555
5656
### Motivation
57-
57+
5858
Agent ${{ env.AGENT_VERSION }} has been released.
5959
6060
### Additional Notes
6161
<!-- Anything else we should know when reviewing? -->
62-
62+
6363
This PR was automatically generated.
6464
title: Finalize Agent release ${{ env.AGENT_VERSION }}
6565
branch: bot/update-agent-changelog-${{ env.AGENT_VERSION }}

.github/workflows/update-dependencies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.11"
2121
- name: Install ddev from local folder
@@ -53,12 +53,12 @@ jobs:
5353
Update the dependencies
5454
5555
### Motivation
56-
56+
5757
Some of the dependencies are outdated
5858
5959
### Additional Notes
6060
<!-- Anything else we should know when reviewing? -->
61-
61+
6262
This PR was automatically generated.
6363
6464
### Review checklist (to be filled by reviewers)

0 commit comments

Comments
 (0)