Skip to content

Commit 3409968

Browse files
committed
fix
1 parent ccd2d0a commit 3409968

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/check-sketches-deps.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,23 @@ jobs:
99
runs-on: ubuntu-latest
1010
env:
1111
ARDUINO_CLI_PATH: '/home/runner/bin'
12-
ARDUINO_CLI_VERSION: 'latest'
1312
steps:
1413
- name: Checkout repository
1514
uses: actions/checkout@v4
1615

1716
- name: Install the latest version of Arduino CLI
1817
run: |
19-
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh -s -- -b ${{ env.ARDUINO_CLI_PATH }} ${{ env.ARDUINO_CLI_VERSION }}
18+
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh -s -- -b ${{ env.ARDUINO_CLI_PATH }}
2019
2120
- name: Update Arduino cores and libraries and install Zephyr core
2221
run: |
23-
export PATH="${{ env.TASKFILE_PATH }}:$PATH"
22+
export PATH="${{ env.ARDUINO_CLI_PATH }}:$PATH"
2423
arduino-cli update
2524
arduino-cli core install arduino:zephyr
2625
2726
- name: Verify sketches
2827
run: |
29-
export PATH="${{ env.TASKFILE_PATH }}:$PATH"
28+
export PATH="${{ env.ARDUINO_CLI_PATH }}:$PATH"
3029
SKETCHES=$(find . -name "*.ino")
3130
for SKETCH in $SKETCHES; do
3231
echo "Verifying $SKETCH"

0 commit comments

Comments
 (0)