Skip to content

Commit 5b700a1

Browse files
authored
Merge pull request #44 from arduino/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents 80c9c85 + de7294d commit 5b700a1

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/check-npm-task.yml

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

6161
steps:
6262
- name: Checkout repository
63-
uses: actions/checkout@v3
63+
uses: actions/checkout@v4
6464

6565
- name: Setup Node.js
6666
uses: actions/setup-node@v3
@@ -83,7 +83,7 @@ jobs:
8383

8484
steps:
8585
- name: Checkout repository
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787

8888
- name: Setup Node.js
8989
uses: actions/setup-node@v3

.github/workflows/check-taskfiles.yml

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

6666
steps:
6767
- name: Checkout repository
68-
uses: actions/checkout@v3
68+
uses: actions/checkout@v4
6969

7070
- name: Setup Node.js
7171
uses: actions/setup-node@v3

.github/workflows/libraries_report-size-deltas.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
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Set up Python
2828
uses: actions/setup-python@v4

.github/workflows/spell-check.yml

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

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

1313
- name: Spell check
1414
uses: arduino/actions/libraries/spell-check@master

.github/workflows/sync-labels-npm.yml

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

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

3838
- name: Setup Node.js
3939
uses: actions/setup-node@v3
@@ -116,7 +116,7 @@ jobs:
116116
echo "flag=--dry-run" >> $GITHUB_OUTPUT
117117
118118
- name: Checkout repository
119-
uses: actions/checkout@v3
119+
uses: actions/checkout@v4
120120

121121
- name: Download configuration files artifact
122122
uses: actions/download-artifact@v3

.github/workflows/test-integration.yml

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

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

3333
- name: Run action
3434
# Use arduino/report-size-deltas action from local path
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555

5656
- name: Run action
5757
# The action will always fail on pushes by Dependabot due to not having write permissions.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ jobs:
8383
compile:
8484
runs-on: ubuntu-latest
8585
steps:
86-
- uses: actions/checkout@v2
86+
- uses: actions/checkout@v4
8787
- uses: arduino/compile-sketches@v1
8888
with:
8989
enable-deltas-report: true
90-
- uses: actions/upload-artifact@v2
90+
- uses: actions/upload-artifact@v3
9191
with:
9292
name: sketches-reports
9393
path: sketches-reports
@@ -110,7 +110,7 @@ jobs:
110110
- "arduino:avr:uno"
111111
- "arduino:samd:mkrzero"
112112
steps:
113-
- uses: actions/checkout@v2
113+
- uses: actions/checkout@v4
114114
115115
- uses: arduino/compile-sketches@v1
116116
with:
@@ -120,7 +120,7 @@ jobs:
120120
121121
# This step is needed to pass the size data to the report job
122122
- name: Upload sketches report to workflow artifact
123-
uses: actions/upload-artifact@v2
123+
uses: actions/upload-artifact@v3
124124
with:
125125
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
126126
path: ${{ env.SKETCHES_REPORTS_PATH }}
@@ -133,7 +133,7 @@ jobs:
133133
steps:
134134
# This step is needed to get the size data produced by the compile jobs
135135
- name: Download sketches reports artifact
136-
uses: actions/download-artifact@v2
136+
uses: actions/download-artifact@v3
137137
with:
138138
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
139139
path: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)