Skip to content

Commit 8d7dc3e

Browse files
committed
Update actions/setup-python version used in template workflows
A new major version of the `actions/setup-python` GitHub Actions action has been released, which will be the standard version for use in all Arduino tooling project workflows. This requires an update to the action reference in the "template" workflows
1 parent 4f07f7f commit 8d7dc3e

18 files changed

+20
-20
lines changed

workflow-templates/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v3
6565

6666
- name: Install Python
67-
uses: actions/setup-python@v3
67+
uses: actions/setup-python@v4
6868
with:
6969
python-version: ${{ env.PYTHON_VERSION }}
7070

workflow-templates/check-python-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
uses: actions/checkout@v3
6969

7070
- name: Install Python
71-
uses: actions/setup-python@v3
71+
uses: actions/setup-python@v4
7272
with:
7373
python-version: ${{ env.PYTHON_VERSION }}
7474

@@ -97,7 +97,7 @@ jobs:
9797
uses: actions/checkout@v3
9898

9999
- name: Install Python
100-
uses: actions/setup-python@v3
100+
uses: actions/setup-python@v4
101101
with:
102102
python-version: ${{ env.PYTHON_VERSION }}
103103

workflow-templates/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
uses: actions/checkout@v3
9797

9898
- name: Install Python
99-
uses: actions/setup-python@v3
99+
uses: actions/setup-python@v4
100100
with:
101101
python-version: ${{ env.PYTHON_VERSION }}
102102

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v3
6565

6666
- name: Install Python
67-
uses: actions/setup-python@v3
67+
uses: actions/setup-python@v4
6868
with:
6969
python-version: ${{ env.PYTHON_VERSION }}
7070

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-python-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
uses: actions/checkout@v3
6969

7070
- name: Install Python
71-
uses: actions/setup-python@v3
71+
uses: actions/setup-python@v4
7272
with:
7373
python-version: ${{ env.PYTHON_VERSION }}
7474

@@ -97,7 +97,7 @@ jobs:
9797
uses: actions/checkout@v3
9898

9999
- name: Install Python
100-
uses: actions/setup-python@v3
100+
uses: actions/setup-python@v4
101101
with:
102102
python-version: ${{ env.PYTHON_VERSION }}
103103

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-yaml-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
uses: actions/checkout@v3
9797

9898
- name: Install Python
99-
uses: actions/setup-python@v3
99+
uses: actions/setup-python@v4
100100
with:
101101
python-version: ${{ env.PYTHON_VERSION }}
102102

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/checkout@v3
5555

5656
- name: Install Python
57-
uses: actions/setup-python@v3
57+
uses: actions/setup-python@v4
5858
with:
5959
python-version: ${{ env.PYTHON_VERSION }}
6060

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-mkdocs-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v3
3030

3131
- name: Install Python
32-
uses: actions/setup-python@v3
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: ${{ env.PYTHON_VERSION }}
3535

workflow-templates/dependabot/workflow-template-copies/.github/workflows/deploy-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@v3
5050

5151
- name: Install Python
52-
uses: actions/setup-python@v3
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: ${{ env.PYTHON_VERSION }}
5555

workflow-templates/dependabot/workflow-template-copies/.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v3
2525

2626
- name: Install Python
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ env.PYTHON_VERSION }}
3030

0 commit comments

Comments
 (0)