Skip to content

Commit 89695db

Browse files
authored
Merge branch 'arduino-libraries:master' into master
2 parents 42b760b + 5c0bacf commit 89695db

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/check-arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

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

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

.github/workflows/compile-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v2
70+
uses: actions/checkout@v3
7171

7272
- name: Compile examples
7373
uses: arduino/compile-sketches@v1
@@ -86,7 +86,7 @@ jobs:
8686
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
8787

8888
- name: Save sketches report as workflow artifact
89-
uses: actions/upload-artifact@v2
89+
uses: actions/upload-artifact@v3
9090
with:
9191
if-no-files-found: error
9292
path: ${{ env.SKETCHES_REPORTS_PATH }}

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

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

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

.github/workflows/sync-labels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

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

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
@@ -70,7 +70,7 @@ jobs:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

7272
- name: Pass configuration files to next job via workflow artifact
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
path: |
7676
*.yaml
@@ -105,10 +105,10 @@ jobs:
105105
echo "::set-output name=flag::--dry-run"
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v2
108+
uses: actions/checkout@v3
109109

110110
- name: Download configuration files artifact
111-
uses: actions/download-artifact@v2
111+
uses: actions/download-artifact@v3
112112
with:
113113
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
114114
path: ${{ env.CONFIGURATIONS_FOLDER }}

docs/api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ rtc.getMonth()
200200

201201
#### Return
202202
the month value.
203-
getDay()
203+
204+
### `getDay()`
204205

205206
Get the RTC day value.
206207

0 commit comments

Comments
 (0)