Skip to content

Commit c3ef958

Browse files
committed
ci: Use actions/checkout@v3
This commit updates the CI workflows to use the latest "checkout" action v3, which is based on Node.js 16. Note that Node.js 12-based actions are now deprecated by GitHub and may stop working in the near future. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 727806f commit c3ef958

17 files changed

+21
-21
lines changed

.github/workflows/backport_issue_check.yml

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

1313
steps:
1414
- name: Check out source code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Install Python dependencies
1818
run: |

.github/workflows/bluetooth-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "$HOME/.local/bin" >> $GITHUB_PATH
3535
3636
- name: checkout
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
- name: west setup
4040
run: |

.github/workflows/clang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# hotfix, until we have a better way to deal with existing data
3232
rm -rf zephyr zephyr-testing
3333
- name: Checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha }}
3737
fetch-depth: 0

.github/workflows/codecov.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "$HOME/.local/bin" >> $GITHUB_PATH
2828
2929
- name: checkout
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
fetch-depth: 0
3333

@@ -102,7 +102,7 @@ jobs:
102102

103103
steps:
104104
- name: checkout
105-
uses: actions/checkout@v2
105+
uses: actions/checkout@v3
106106
with:
107107
fetch-depth: 0
108108
- name: Download Artifacts

.github/workflows/coding_guidelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Run coding guidelines checks on patch series (PR)
99
steps:
1010
- name: Checkout the code
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
with:
1313
ref: ${{ github.event.pull_request.head.sha }}
1414
fetch-depth: 0

.github/workflows/compliance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check MAINTAINERS file
99
steps:
1010
- name: Checkout the code
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
with:
1313
ref: ${{ github.event.pull_request.head.sha }}
1414
fetch-depth: 0
@@ -28,7 +28,7 @@ jobs:
2828
echo "$HOME/.local/bin" >> $GITHUB_PATH
2929
3030
- name: Checkout the code
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
ref: ${{ github.event.pull_request.head.sha }}
3434
fetch-depth: 0

.github/workflows/daily_test_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
pip3 install gitpython
2929
3030
- name: checkout
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/devicetree_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: 3.6
3434
steps:
3535
- name: checkout
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
3737
- name: Set up Python ${{ matrix.python-version }}
3838
uses: actions/setup-python@v1
3939
with:

.github/workflows/doc-build.yml

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

4444
steps:
4545
- name: checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747

4848
- name: install-pkgs
4949
run: |
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: checkout
123-
uses: actions/checkout@v2
123+
uses: actions/checkout@v3
124124

125125
- name: install-pkgs
126126
run: |

.github/workflows/errno.yml

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

1313
steps:
1414
- name: checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Run errno.py
1818
run: |

0 commit comments

Comments
 (0)