Skip to content

Commit bfed82a

Browse files
authored
Merge pull request #582 from thomaspinder/dependabot/github_actions/actions/checkout-6
ci(deps): bump actions/checkout from 5 to 6
2 parents fcc55e5 + 93e9403 commit bfed82a

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/auto-label.yml

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

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Auto-label based on files changed
2222
if: github.event_name == 'pull_request'

.github/workflows/build_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# Grap the latest commit from the branch
2929
- name: Checkout the branch
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
persist-credentials: false
3333

.github/workflows/commit-lint.yml

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

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
steps:
1919
- name: Check out the code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 1
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535

@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Checkout repository
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676

7777
- name: Set up Python ${{ matrix.python-version }}
7878
uses: actions/setup-python@v6
@@ -108,7 +108,7 @@ jobs:
108108

109109
steps:
110110
- name: Checkout repository
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@v6
112112

113113
- name: Set up Python
114114
uses: actions/setup-python@v6
@@ -146,7 +146,7 @@ jobs:
146146

147147
steps:
148148
- name: Checkout repository
149-
uses: actions/checkout@v5
149+
uses: actions/checkout@v6
150150

151151
- name: Set up Python
152152
uses: actions/setup-python@v6
@@ -181,7 +181,7 @@ jobs:
181181

182182
steps:
183183
- name: Checkout repository
184-
uses: actions/checkout@v5
184+
uses: actions/checkout@v6
185185
with:
186186
fetch-depth: 0
187187

@@ -261,7 +261,7 @@ jobs:
261261

262262
steps:
263263
- name: Checkout repository
264-
uses: actions/checkout@v5
264+
uses: actions/checkout@v6
265265

266266
- name: Download build artifacts
267267
uses: actions/download-artifact@v6

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
ruff:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: chartboost/ruff-action@v1

.github/workflows/security-analysis.yml

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

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Set up Python
2626
uses: actions/setup-python@v6
@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: Checkout repository
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
with:
6767
fetch-depth: 0 # Fetch full history for comprehensive scanning
6868

.github/workflows/test_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
# Grap the latest commit from the branch
2020
- name: Checkout the branch
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
persist-credentials: false
2424

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Check out the code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 1
2222
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)