Skip to content

Commit a6e851b

Browse files
authored
Update actions to ensure using Node 24
1 parent fbc4338 commit a6e851b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
tr '_' '-'
2020
)" >> $GITHUB_OUTPUT
2121
- name: Set up Python 3.12
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.12"
2525
- name: Versions
2626
run: |
2727
python3 --version
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v6
2929
with:
3030
submodules: true
3131
fetch-depth: 0

.github/workflows/images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
if: github.repository_owner == 'adafruit'
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v6
2222

2323
- name: checkout submodules
2424
run: git submodule update --init --jobs 16 --depth 1
2525
- name: Set up Python 3.12
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: "3.12"
2929

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
tr '_' '-'
2323
)" >> $GITHUB_OUTPUT
2424
- name: Set up Python 3.12
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: "3.12"
2828
- name: Versions
2929
run: |
3030
python3 --version
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v6
3232
with:
3333
submodules: true
3434
fetch-depth: 0

0 commit comments

Comments
 (0)