File tree 14 files changed +70
-14
lines changed
dependabot/workflow-template-copies/.github/workflows 14 files changed +70
-14
lines changed Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-yaml-task.md
2
2
name : Check YAML
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
65
69
- name : Install Python
66
70
uses : actions/setup-python@v2
67
71
with :
68
- python-version : " 3.9 "
72
+ python-version : ${{ env.PYTHON_VERSION }}
69
73
70
74
- name : Install Poetry
71
75
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
2
2
name : Spell Check
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
22
26
- name : Install Python
23
27
uses : actions/setup-python@v2
24
28
with :
25
- python-version : " 3.9 "
29
+ python-version : ${{ env.PYTHON_VERSION }}
26
30
27
31
- name : Install Poetry
28
32
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-mkdocs-task.md
2
2
name : Check Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
33
37
- name : Install Python
34
38
uses : actions/setup-python@v2
35
39
with :
36
- python-version : " 3.9 "
40
+ python-version : ${{ env.PYTHON_VERSION }}
37
41
38
42
- name : Install Poetry
39
43
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-yaml-task.md
2
2
name : Check YAML
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
65
69
- name : Install Python
66
70
uses : actions/setup-python@v2
67
71
with :
68
- python-version : " 3.9 "
72
+ python-version : ${{ env.PYTHON_VERSION }}
69
73
70
74
- name : Install Poetry
71
75
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-mkdocs-task.md
2
2
name : Check Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
33
37
- name : Install Python
34
38
uses : actions/setup-python@v2
35
39
with :
36
- python-version : " 3.9 "
40
+ python-version : ${{ env.PYTHON_VERSION }}
37
41
38
42
- name : Install Poetry
39
43
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-yaml-task.md
2
2
name : Check YAML
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
65
69
- name : Install Python
66
70
uses : actions/setup-python@v2
67
71
with :
68
- python-version : " 3.9 "
72
+ python-version : ${{ env.PYTHON_VERSION }}
69
73
70
74
- name : Install Poetry
71
75
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-cobra-mkdocs-versioned-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
on :
5
9
push :
6
10
branches :
52
56
- name : Install Python
53
57
uses : actions/setup-python@v2
54
58
with :
55
- python-version : " 3.9 "
59
+ python-version : ${{ env.PYTHON_VERSION }}
56
60
57
61
- name : Install Poetry
58
62
run : |
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-mkdocs-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
27
31
- name : Install Python
28
32
uses : actions/setup-python@v2
29
33
with :
30
- python-version : " 3.9 "
34
+ python-version : ${{ env.PYTHON_VERSION }}
31
35
32
36
- name : Install Poetry
33
37
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-mkdocs-versioned-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
on :
5
9
push :
6
10
branches :
47
51
- name : Install Python
48
52
uses : actions/setup-python@v2
49
53
with :
50
- python-version : " 3.9 "
54
+ python-version : ${{ env.PYTHON_VERSION }}
51
55
52
56
- name : Install Poetry
53
57
run : |
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
2
2
name : Spell Check
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
22
26
- name : Install Python
23
27
uses : actions/setup-python@v2
24
28
with :
25
- python-version : " 3.9 "
29
+ python-version : ${{ env.PYTHON_VERSION }}
26
30
27
31
- name : Install Poetry
28
32
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-cobra-mkdocs-versioned-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
on :
5
9
push :
6
10
branches :
52
56
- name : Install Python
53
57
uses : actions/setup-python@v2
54
58
with :
55
- python-version : " 3.9 "
59
+ python-version : ${{ env.PYTHON_VERSION }}
56
60
57
61
- name : Install Poetry
58
62
run : |
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-mkdocs-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
27
31
- name : Install Python
28
32
uses : actions/setup-python@v2
29
33
with :
30
- python-version : " 3.9 "
34
+ python-version : ${{ env.PYTHON_VERSION }}
31
35
32
36
- name : Install Poetry
33
37
run : pip install poetry
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/deploy-mkdocs-versioned-poetry.md
2
2
name : Deploy Website
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
on :
5
9
push :
6
10
branches :
47
51
- name : Install Python
48
52
uses : actions/setup-python@v2
49
53
with :
50
- python-version : " 3.9 "
54
+ python-version : ${{ env.PYTHON_VERSION }}
51
55
52
56
- name : Install Poetry
53
57
run : |
Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
2
2
name : Spell Check
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
6
+ PYTHON_VERSION : " 3.9"
7
+
4
8
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
22
26
- name : Install Python
23
27
uses : actions/setup-python@v2
24
28
with :
25
- python-version : " 3.9 "
29
+ python-version : ${{ env.PYTHON_VERSION }}
26
30
27
31
- name : Install Poetry
28
32
run : pip install poetry
You can’t perform that action at this time.
0 commit comments