Skip to content

Commit 7ae25d7

Browse files
authored
Merge pull request #429 from arduino/dependabot/github_actions/workflow-templates/actions/setup-python-5
Bump actions/setup-python from 4 to 5 in /workflow-templates
2 parents c4a12ed + 302d1db commit 7ae25d7

13 files changed

+15
-15
lines changed

.github/workflows/check-python-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v4
7272

7373
- name: Install Python
74-
uses: actions/setup-python@v4
74+
uses: actions/setup-python@v5
7575
with:
7676
python-version: ${{ env.PYTHON_VERSION }}
7777

@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/checkout@v4
103103

104104
- name: Install Python
105-
uses: actions/setup-python@v4
105+
uses: actions/setup-python@v5
106106
with:
107107
python-version: ${{ env.PYTHON_VERSION }}
108108

.github/workflows/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v4
100100

101101
- name: Install Python
102-
uses: actions/setup-python@v4
102+
uses: actions/setup-python@v5
103103
with:
104104
python-version: ${{ env.PYTHON_VERSION }}
105105

.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v4
5454

5555
- name: Install Python
56-
uses: actions/setup-python@v4
56+
uses: actions/setup-python@v5
5757
with:
5858
python-version: ${{ env.PYTHON_VERSION }}
5959

.github/workflows/test-python-poetry-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: actions/checkout@v4
6868

6969
- name: Install Python
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: ${{ env.PYTHON_VERSION }}
7373

workflow-templates/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: actions/checkout@v4
6868

6969
- name: Install Python
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: ${{ env.PYTHON_VERSION }}
7373

workflow-templates/check-python-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v4
7272

7373
- name: Install Python
74-
uses: actions/setup-python@v4
74+
uses: actions/setup-python@v5
7575
with:
7676
python-version: ${{ env.PYTHON_VERSION }}
7777

@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/checkout@v4
103103

104104
- name: Install Python
105-
uses: actions/setup-python@v4
105+
uses: actions/setup-python@v5
106106
with:
107107
python-version: ${{ env.PYTHON_VERSION }}
108108

workflow-templates/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v4
100100

101101
- name: Install Python
102-
uses: actions/setup-python@v4
102+
uses: actions/setup-python@v5
103103
with:
104104
python-version: ${{ env.PYTHON_VERSION }}
105105

workflow-templates/deploy-cobra-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
go-version: ${{ env.GO_VERSION }}
7171

7272
- name: Install Python
73-
uses: actions/setup-python@v4
73+
uses: actions/setup-python@v5
7474
with:
7575
python-version: ${{ env.PYTHON_VERSION }}
7676

workflow-templates/deploy-mkdocs-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v4
3232

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

workflow-templates/deploy-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/checkout@v4
5959

6060
- name: Install Python
61-
uses: actions/setup-python@v4
61+
uses: actions/setup-python@v5
6262
with:
6363
python-version: ${{ env.PYTHON_VERSION }}
6464

workflow-templates/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v4
5454

5555
- name: Install Python
56-
uses: actions/setup-python@v4
56+
uses: actions/setup-python@v5
5757
with:
5858
python-version: ${{ env.PYTHON_VERSION }}
5959

workflow-templates/test-go-integration-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
go-version: ${{ env.GO_VERSION }}
8787

8888
- name: Install Python
89-
uses: actions/setup-python@v4
89+
uses: actions/setup-python@v5
9090
with:
9191
python-version: ${{ env.PYTHON_VERSION }}
9292

workflow-templates/test-python-poetry-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: actions/checkout@v4
6868

6969
- name: Install Python
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: ${{ env.PYTHON_VERSION }}
7373

0 commit comments

Comments
 (0)