Skip to content

Commit 3f8ff2a

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

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/check-npm.yml

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

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Download JSON schema for package.json
3737
id: download-schema
@@ -135,7 +135,7 @@ jobs:
135135

136136
steps:
137137
- name: Checkout repository
138-
uses: actions/checkout@v3
138+
uses: actions/checkout@v4
139139

140140
- name: Setup Node.js
141141
uses: actions/setup-node@v3

.github/workflows/check-packaging-ncc-typescript-npm.yml

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

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

3535
- name: Setup Node.js
3636
uses: actions/setup-node@v3

.github/workflows/check-toc.yml

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

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

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

.github/workflows/check-tsconfig.yml

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

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

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

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
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@v3
22+
uses: actions/checkout@v4
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@v3
37+
uses: actions/checkout@v4
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@v3
60+
uses: actions/checkout@v4
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

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 repository
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

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

.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@v3
30+
uses: actions/checkout@v4
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@v3
109+
uses: actions/checkout@v4
110110

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

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
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@v3
29+
uses: actions/checkout@v4
3030

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

0 commit comments

Comments
 (0)