Skip to content

Commit ac92c26

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2c924d9 commit ac92c26

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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@v4
19+
uses: actions/checkout@v5
2020

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

.github/workflows/compile-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ jobs:
195195
- examples/ConnectionHandlerDemo-Notecard
196196
197197
steps:
198-
- uses: actions/checkout@v4
198+
- uses: actions/checkout@v5
199199

200200
# It's necessary to checkout the platform before installing it so that the ArduinoCore-API dependency can be added
201201
- name: Checkout ArduinoCore-mbed
202202
# this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
203203
if: matrix.board.platform-name == 'arduino:mbed'
204-
uses: actions/checkout@v4
204+
uses: actions/checkout@v5
205205
with:
206206
repository: arduino/ArduinoCore-mbed
207207
# The arduino/actions/libraries/compile-examples action will install the platform from this path
@@ -210,7 +210,7 @@ jobs:
210210
- name: Checkout ArduinoCore-API
211211
# This step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
212212
if: matrix.board.platform-name == 'arduino:mbed'
213-
uses: actions/checkout@v4
213+
uses: actions/checkout@v5
214214
with:
215215
repository: arduino/ArduinoCore-API
216216
path: ${{ env.ARDUINOCORE_API_STAGING_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@v4
19+
uses: actions/checkout@v5
2020

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

.github/workflows/sync-labels.yml

Lines changed: 2 additions & 2 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@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
@@ -105,7 +105,7 @@ jobs:
105105
echo "::set-output name=flag::--dry-run"
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v4
108+
uses: actions/checkout@v5
109109

110110
- name: Download configuration files artifact
111111
uses: actions/download-artifact@v5

0 commit comments

Comments
 (0)