Skip to content

Commit 2ca8057

Browse files
committed
Update workflow file to use latest setup actions
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 7575f79 commit 2ca8057

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/examples.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@ jobs:
77
runs-on: windows-latest
88
steps:
99
- name: Install Logicrom platform
10-
uses: actions/checkout@v3
10+
uses: actions/checkout@v4
1111
with:
1212
submodules: recursive
13-
- name: Set up Python 3.9
14-
uses: actions/setup-python@v4
13+
- name: Set up Python 3.11
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.9
16+
python-version: 3.11
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -U https://github.com/platformio/platformio/archive/develop.zip
2121
pio pkg install --global --platform symlink://.
2222
- name: Clone Arduino build test application
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
repository: 'waybyte/arduino-verify'
2626
path: app/arduino-verify
2727
- name: Build Arduino
2828
run: |
2929
pio run -d app/arduino-verify
3030
- name: Clone Logicrom OpenCPU SDK build test application
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
repository: 'waybyte/logicromsdk-verify'
3434
path: app/logicromsdk-verify
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, windows-latest, macos-latest]
43-
python-version: [3.9]
43+
python-version: [3.11]
4444
example:
4545
- "examples/arduino-blink"
4646
- "examples/example-adc"
@@ -63,11 +63,11 @@ jobs:
6363
runs-on: ${{ matrix.os }}
6464
steps:
6565
- name: Checkout Logicrom platform and examples
66-
uses: actions/checkout@v3
66+
uses: actions/checkout@v4
6767
with:
6868
submodules: recursive
6969
- name: Set up Python ${{ matrix.python-version }}
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: ${{ matrix.python-version }}
7373
- name: Install dependencies

0 commit comments

Comments
 (0)