Skip to content

Commit 35a23ab

Browse files
chore: update actions/checkout@v4 -> v5
1 parent ab4e354 commit 35a23ab

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/automated-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- name: Check out repository code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Use Node.js
1919
uses: actions/setup-node@v4
2020
with:

.github/workflows/container-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
options: --privileged
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: Build container
2323
run: |
2424
# registry credentials

.github/workflows/dependency-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Dependency Review
1414
uses: actions/dependency-review-action@v4

guides/eslint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
169169
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
170170
- name: Check out repository code
171-
uses: actions/checkout@v4
171+
uses: actions/checkout@v5
172172
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
173173
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
174174
- name: Use Node.js

scripts/check_modules.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,15 @@ def check_modules():
137137
"category": "Recommendation",
138138
},
139139
"uses: actions/checkout@v2": {
140-
"name": "Replace it with v4.",
140+
"name": "Replace it with v5.",
141141
"category": "Recommendation",
142142
},
143143
"uses: actions/checkout@v3": {
144-
"name": "Replace it with v4.",
144+
"name": "Replace it with v5.",
145+
"category": "Recommendation",
146+
},
147+
"uses: actions/checkout@v4": {
148+
"name": "Replace it with v5.",
145149
"category": "Recommendation",
146150
},
147151
"uses: actions/setup-node@v3": {

0 commit comments

Comments
 (0)