Skip to content

Commit a403315

Browse files
committed
Update action versions
1 parent 478b164 commit a403315

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ 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@v4
2727
with:
28-
python-version: 3.7
28+
python-version: '3.x'
2929
- name: Versions
3030
run: |
3131
python3 --version
3232
- name: Checkout Current Repo
33-
uses: actions/checkout@v1
33+
uses: actions/checkout@v3
3434
with:
3535
submodules: true
3636
- name: Checkout tools repo
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
with:
3939
repository: adafruit/actions-ci-circuitpython-libs
4040
path: actions-ci

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
upload-pypi:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v3
1616
- name: Check For setup.py
1717
id: need-pypi
1818
run: |
1919
echo ::set-output name=setup-py::$( find . -wholename './setup.py' )
2020
- name: Set up Python
2121
if: contains(steps.need-pypi.outputs.setup-py, 'setup.py')
22-
uses: actions/setup-python@v1
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: '3.x'
2525
- name: Install dependencies

0 commit comments

Comments
 (0)