Skip to content

Commit 9c3d614

Browse files
authored
Merge branch 'arduino-libraries:master' into master
2 parents 58bcbb6 + 1c56f58 commit 9c3d614

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/check-arduino.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Arduino Lint
2222
uses: arduino/arduino-lint-action@v1

.github/workflows/compile-examples.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- fqbn: arduino:samd:mkrzero
5050
platforms: |
5151
- name: arduino:samd
52-
- fqbn: arduino:mbed_portenta:envie_m4
52+
- fqbn: arduino:mbed_portenta:envie_m7:target_core=cm4
5353
platforms: |
5454
- name: arduino:mbed_portenta
5555
- fqbn: arduino:mbed_portenta:envie_m7
@@ -64,7 +64,7 @@ jobs:
6464
6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868

6969
- name: Compile examples
7070
uses: arduino/compile-sketches@v1

.github/workflows/spell-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Spell check
2222
uses: codespell-project/actions-codespell@master

.github/workflows/sync-labels.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
34-
uses: carlosperate/download-file-action@v1
34+
uses: carlosperate/download-file-action@v2
3535
with:
3636
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/arduino-tooling-gh-label-configuration-schema.json
3737
location: ${{ runner.temp }}/label-configuration-schema
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Download
68-
uses: carlosperate/download-file-action@v1
68+
uses: carlosperate/download-file-action@v2
6969
with:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

@@ -105,7 +105,7 @@ jobs:
105105
echo "::set-output name=flag::--dry-run"
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v3
108+
uses: actions/checkout@v4
109109

110110
- name: Download configuration files artifact
111111
uses: actions/download-artifact@v3
@@ -114,7 +114,7 @@ jobs:
114114
path: ${{ env.CONFIGURATIONS_FOLDER }}
115115

116116
- name: Remove unneeded artifact
117-
uses: geekyeggo/delete-artifact@v1
117+
uses: geekyeggo/delete-artifact@v2
118118
with:
119119
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
120120

src/SD.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ namespace SDLib {
456456
457457
*/
458458

459-
int pathidx;
459+
int pathidx = 0;
460460

461461
// do the interactive search
462462
SdFile parentdir = getParentDir(filepath, &pathidx);

0 commit comments

Comments
 (0)