Skip to content

Commit 819000b

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 77dc5d2 commit 819000b

19 files changed

+37
-37
lines changed

.github/workflows/01-lint.yml

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

167167
steps:
168168
- name: 📥 Checkout code
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v5
170170

171171
- name: 🐍 Set up Python 3.12
172172
if: |

.github/workflows/02-security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# 0️⃣ Checkout source code with full history for secret scanning
3030
- name: 📥 Checkout code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0 # Need full history to scan all commits
3434

@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
# 0️⃣ Checkout source code with full history
4848
- name: 📥 Checkout code
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
fetch-depth: 0 # Need full history for differential scanning
5252

@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
steps:
6868
- name: 📥 Checkout code
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v5
7070

7171
- name: 🔍 Scan Python dependencies (pyproject.toml, poetry.lock)
7272
uses: aquasecurity/trivy-action@master
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
steps:
9292
- name: 📥 Checkout code
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494

9595
- name: 🔍 Scan Node dependencies (package.json, package-lock.json)
9696
uses: aquasecurity/trivy-action@master

.github/workflows/03-build-secure.yml

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

4848
steps:
4949
- name: 📥 Checkout code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151

5252
- name: 🧹 Free Up Disk Space
5353
run: |

.github/workflows/04-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
# 0️⃣ Checkout source code
4646
- name: 📥 Checkout code
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848

4949
# 1️⃣ Setup Python environment
5050
- name: 🐍 Set up Python

.github/workflows/05-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
test-isolation:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333

3434
- name: Set up Python
3535
uses: actions/setup-python@v4
@@ -84,7 +84,7 @@ jobs:
8484
EMBEDDING_MODEL: sentence-transformers/all-minilm-l6-v2
8585
DATA_DIR: /tmp/test-data
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888

8989
- name: Set up Python
9090
uses: actions/setup-python@v4

.github/workflows/06-weekly-security-audit.yml

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

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

3535
- name: 🧹 Free Up Disk Space
3636
run: |
@@ -122,7 +122,7 @@ jobs:
122122
if: always()
123123
steps:
124124
- name: 📥 Checkout code
125-
uses: actions/checkout@v4
125+
uses: actions/checkout@v5
126126

127127
- name: 📥 Download Security Reports
128128
uses: actions/download-artifact@v4

.github/workflows/07-frontend-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
# 0️⃣ Checkout source code
3535
- name: 📥 Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
# 1️⃣ Setup Node.js environment
3939
- name: 📦 Setup Node.js

.github/workflows/ai-issue-triage.yml

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

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737

.github/workflows/claude-code-review.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 1
3333

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
actions: read
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 1
3737

0 commit comments

Comments
 (0)