Skip to content

Commit 730a981

Browse files
committed
Update actions to Node 20
1 parent dbbaf5c commit 730a981

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
GITHUB_CONTEXT: ${{ toJson(github) }}
1616
run: echo "$GITHUB_CONTEXT"
1717
- name: Set up Python 3.x (Latest)
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.x"
2121
- name: Checkout current repo
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
submodules: true
2525
- name: Install pre-commit

build/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ runs:
3535
tr '_' '-'
3636
) >> $GITHUB_OUTPUT
3737
- name: Set up Python 3.11
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ inputs.python-version }}
4141
- name: Versions
4242
shell: bash
4343
run: |
4444
python3 --version
4545
- name: Checkout Current Repo
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
submodules: true
4949
- name: Checkout tools repo
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
repository: adafruit/actions-ci-circuitpython-libs
5353
path: actions-ci

release-gh/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ runs:
4141
tr '_' '-'
4242
) >> $GITHUB_OUTPUT
4343
- name: Set up requested Python version
44-
uses: actions/setup-python@v4
44+
uses: actions/setup-python@v5
4545
with:
4646
python-version: ${{ inputs.python-version }}
4747
- name: Versions
4848
shell: bash
4949
run: |
5050
python3 --version
5151
- name: Checkout Current Repo
52-
uses: actions/checkout@v3
52+
uses: actions/checkout@v4
5353
with:
5454
submodules: true
5555
- name: Checkout tools repo
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
repository: adafruit/actions-ci-circuitpython-libs
5959
path: actions-ci

release-pypi/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ inputs:
1818
runs:
1919
using: "composite"
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Check For pyproject.toml
2323
id: need-pypi
2424
shell: bash
2525
run: |
2626
echo pyproject-toml=$( find . -wholename './pyproject.toml' ) >> $GITHUB_OUTPUT
2727
- name: Set up Python
2828
if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ inputs.python-version }}
3232
- name: Install dependencies

0 commit comments

Comments
 (0)