Skip to content

Commit 1680954

Browse files
authored
Merge pull request #60 from bcmi-labs/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 33fb1ce + 1b162b5 commit 1680954

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .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

Diff for: .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 }}

Diff for: .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)