Skip to content

Commit d000753

Browse files
committed
[github] update workflow actions to use node 20
1 parent e22f998 commit d000753

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/arduino-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
vendor: teensy
4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
- name: Compile examples
5353
uses: arduino/compile-sketches@v1
5454
with:

.github/workflows/ccpp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- name: build test and run
3131
run: cd test; make test
3232
- name: build generator

.github/workflows/platformio-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@ jobs:
5252
- z8000
5353

5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- name: Cache pip
57-
uses: actions/cache@v3
57+
uses: actions/cache@v4
5858
with:
5959
path: ~/.cache/pip
6060
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
6161
restore-keys: |
6262
${{ runner.os }}-pip-
6363
- name: Cache PlatformIO
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: ~/.platformio
6767
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
6868
- name: Set up Python
69-
uses: actions/setup-python@v4
69+
uses: actions/setup-python@v5
7070
- name: Install PlatformIO
7171
run: |
7272
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)