Skip to content

Commit 3add8e1

Browse files
authored
Merge pull request #101 from arduino-libraries/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents 27a65e8 + 34066fd commit 3add8e1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ jobs:
113113
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
114114
115115
steps:
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117

118118
# It's necessary to checkout the platform before installing it so that the ArduinoCore-API dependency can be added
119119
- name: Checkout ArduinoCore-mbed
120120
# this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
121121
if: matrix.board.platform-name == 'arduino:mbed'
122-
uses: actions/checkout@v3
122+
uses: actions/checkout@v4
123123
with:
124124
repository: arduino/ArduinoCore-mbed
125125
# The arduino/actions/libraries/compile-examples action will install the platform from this path
@@ -128,7 +128,7 @@ jobs:
128128
- name: Checkout ArduinoCore-API
129129
# This step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
130130
if: matrix.board.platform-name == 'arduino:mbed'
131-
uses: actions/checkout@v3
131+
uses: actions/checkout@v4
132132
with:
133133
repository: arduino/ArduinoCore-API
134134
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@v3
19+
uses: actions/checkout@v4
2020

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

.github/workflows/sync-labels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ 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
@@ -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

0 commit comments

Comments
 (0)