Skip to content

Commit 4167b62

Browse files
authored
Merge pull request #65 from arduino/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 991da62 + 336e94d commit 4167b62

8 files changed

+12
-12
lines changed

.github/workflows/check-npm.yml

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

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

3333
- name: Download JSON schema for package.json
3434
id: download-schema
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959

6060
- name: Setup Node.js
6161
uses: actions/setup-node@v3

.github/workflows/check-packaging-ncc-typescript-npm.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: Setup Node.js
3636
uses: actions/setup-node@v3

.github/workflows/check-toc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Install markdown-toc
3535
run: sudo npm install --global markdown-toc

.github/workflows/check-tsconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Install strip-json-comments-cli
3535
run: sudo npm install --global strip-json-comments-cli

.github/workflows/integration.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout local repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
# Run the action using default values as much as possible.
2525
- name: Run action
@@ -34,7 +34,7 @@ jobs:
3434
REPORT_FILE_PATH: /tmp/report.json
3535
steps:
3636
- name: Checkout local repository
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
# The contents of the test data path are structured so that the step will fail if arduino-lint is not run with the configuration according to these inputs.
4040
- name: Run action
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Checkout local repository
60-
uses: actions/checkout@v2
60+
uses: actions/checkout@v3
6161

6262
# The contents of the test data path are structured so that the step will fail if arduino-lint is run with the default configuration.
6363
- name: Run action

.github/workflows/spell-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
2525
- name: Spell check

.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.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: git config --global core.autocrlf false
2727

2828
- name: Checkout
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Setup Node.js
3232
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)