Skip to content

Commit afbfe52

Browse files
authored
Merge pull request #52 from arduino/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 90de8ba + 65c09c5 commit afbfe52

7 files changed

+15
-15
lines changed

.github/workflows/lint-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434

3535
- name: Run the set up script
3636
id: setup

.github/workflows/lint-shell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

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

2121
# Recursively lint all shell scripts in the repository
2222
# See: https://github.com/azohra/shell-linter/blob/latest/README.md

.github/workflows/spell-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212

1313
- name: Spell check
1414
uses: arduino/actions/libraries/spell-check@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@v2
30+
uses: actions/checkout@v3
3131

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
@@ -106,7 +106,7 @@ jobs:
106106
echo "::set-output name=flag::--dry-run"
107107
108108
- name: Checkout repository
109-
uses: actions/checkout@v2
109+
uses: actions/checkout@v3
110110

111111
- name: Download configuration files artifact
112112
uses: actions/download-artifact@v2

.github/workflows/test-integration.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828

2929
steps:
3030
- name: Checkout Servo library
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
repository: arduino-libraries/servo
3434
ref: 1.1.7
3535

3636
- name: Checkout local repo
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
with:
3939
# Must be checked out to a subfolder to not interfere with the checked out library under test
4040
path: extras/compile-sketches
@@ -72,7 +72,7 @@ jobs:
7272
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676

7777
- name: Run action
7878
# Use action from local path
@@ -166,21 +166,21 @@ jobs:
166166
167167
steps:
168168
- name: Checkout library
169-
uses: actions/checkout@v2
169+
uses: actions/checkout@v3
170170
with:
171171
repository: arduino-libraries/Servo
172172
ref: 1.1.7
173173

174174
- name: Checkout platform
175175
if: matrix.board.source-type == 'path'
176-
uses: actions/checkout@v2
176+
uses: actions/checkout@v3
177177
with:
178178
repository: arduino/ArduinoCore-avr
179179
ref: 1.8.3
180180
path: extras/ArduinoCore-avr
181181

182182
- name: Checkout local repo
183-
uses: actions/checkout@v2
183+
uses: actions/checkout@v3
184184
with:
185185
path: extras/compile-sketches
186186

@@ -210,7 +210,7 @@ jobs:
210210
steps:
211211
# Checkout is needed to get the golden reports
212212
- name: Checkout local repo
213-
uses: actions/checkout@v2
213+
uses: actions/checkout@v3
214214

215215
- name: Download sketches reports artifact
216216
uses: actions/download-artifact@v2
@@ -272,7 +272,7 @@ jobs:
272272

273273
steps:
274274
- name: Checkout local repo
275-
uses: actions/checkout@v2
275+
uses: actions/checkout@v3
276276

277277
- name: Compile sketch that is expected to error
278278
id: compile-sketches

.github/workflows/test-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141

4242
- name: Run the set up script
4343
id: setup

.github/workflows/validate-action_yml.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout local repository
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
# See: https://github.com/carlosperate/download-file-action/blob/master/README.md
3434
- name: Download JSON schema for action.yml

0 commit comments

Comments
 (0)