Skip to content

Commit 1b162b5

Browse files
authoredMar 2, 2022
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 33fb1ce commit 1b162b5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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@v2
19+
uses: actions/checkout@v3
2020

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

‎.github/workflows/compile-examples.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ jobs:
6060
6161
steps:
6262
- name: Checkout
63-
uses: actions/checkout@v2
63+
uses: actions/checkout@v3
6464

6565
# it's necessary to checkout the platform before installing it so that the ArduinoCore-API dependency can be added
6666
- name: Checkout ArduinoCore-mbed
6767
# this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v3
6969
with:
7070
repository: arduino/ArduinoCore-mbed
7171
# the arduino/actions/libraries/compile-examples action will install the platform from this path
7272
path: ${{ env.ARDUINOCORE_MBED_STAGING_PATH }}
7373

7474
- name: Checkout ArduinoCore-API
7575
# this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
76-
uses: actions/checkout@v2
76+
uses: actions/checkout@v3
7777
with:
7878
repository: arduino/ArduinoCore-API
7979
path: ${{ env.ARDUINOCORE_API_STAGING_PATH }}

‎.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@v2
19+
uses: actions/checkout@v3
2020

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

0 commit comments

Comments
 (0)
Please sign in to comment.