Skip to content

Commit 74be30a

Browse files
committed
Post-patch cleanup fixes
1 parent 2ffc31f commit 74be30a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Thank you for contributing! Before you submit a pull request, please read the following.
66

7-
Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://circuitpython.readthedocs.io/en/latest/docs/design_guide.html
7+
Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://docs.circuitpython.org/en/latest/docs/design_guide.html
88

99
If your changes are to documentation, please verify that the documentation builds locally by following the steps found here: https://adafru.it/build-docs
1010

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
awk -F '\/' '{ print tolower($2) }' |
2323
tr '_' '-'
2424
)
25-
- name: Set up Python 3.7
26-
uses: actions/setup-python@v1
25+
- name: Set up Python 3.x
26+
uses: actions/setup-python@v2
2727
with:
28-
python-version: 3.7
28+
python-version: "3.x"
2929
- name: Versions
3030
run: |
3131
python3 --version

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
awk -F '\/' '{ print tolower($2) }' |
2525
tr '_' '-'
2626
)
27-
- name: Set up Python 3.10
28-
uses: actions/setup-python@v1
27+
- name: Set up Python 3.x
28+
uses: actions/setup-python@v2
2929
with:
30-
python-version: "3.10"
30+
python-version: "3.x"
3131
- name: Versions
3232
run: |
3333
python3 --version
@@ -67,7 +67,7 @@ jobs:
6767
echo ::set-output name=setup-py::$( find . -wholename './setup.py' )
6868
- name: Set up Python
6969
if: contains(steps.need-pypi.outputs.setup-py, 'setup.py')
70-
uses: actions/setup-python@v1
70+
uses: actions/setup-python@v2
7171
with:
7272
python-version: '3.x'
7373
- name: Install dependencies

0 commit comments

Comments
 (0)