Skip to content

Commit 6967636

Browse files
authored
Merge pull request #6764 from arduino/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents a8211bd + d0e1d87 commit 6967636

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/check-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Install Ruby
4040
uses: ruby/setup-ruby@v1

.github/workflows/check-markdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Initialize markdownlint-cli problem matcher
4040
uses: xt0rted/markdownlint-problem-matcher@v3
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout repository
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454

5555
- name: Determine whether only modified files should be checked
5656
id: check-modified

.github/workflows/check-prettier-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212

213213
steps:
214214
- name: Checkout repository
215-
uses: actions/checkout@v4
215+
uses: actions/checkout@v5
216216

217217
- name: Install Prettier
218218
run: sudo npm install --global prettier

.github/workflows/check-toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Install markdown-toc
3939
run: sudo npm install --global markdown-toc

.github/workflows/check-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Download JSON schema for GitHub Actions workflows
2828
id: download-schema

.github/workflows/check-yaml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767

6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171

7272
- name: Check YAML
7373
continue-on-error: ${{ matrix.configuration.continue-on-error }}

.github/workflows/manage-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
# Checkout the tip of the default branch (this is the action's default ref input value when workflow is triggered
138138
# by an issue_comment or pull_request_target event).
139139
- name: Checkout local repository
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141

142142
- name: Download submission parser
143143
id: download-parser
@@ -594,7 +594,7 @@ jobs:
594594

595595
- name: Checkout index source branch
596596
if: steps.merge.outcome == 'success'
597-
uses: actions/checkout@v4
597+
uses: actions/checkout@v5
598598
with:
599599
ref: production
600600

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Spell check
2525
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 file artifacts
111111
uses: actions/download-artifact@v5

0 commit comments

Comments
 (0)