Skip to content

Commit 6fa179f

Browse files
chore(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b3cb5e1 commit 6fa179f

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
mcp-shellcheck:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v7
1212

1313
- name: Install shellcheck
1414
run: sudo apt-get update && sudo apt-get install -y shellcheck
@@ -125,7 +125,7 @@ jobs:
125125
mcp-plugin:
126126
runs-on: ubuntu-latest
127127
steps:
128-
- uses: actions/checkout@v6
128+
- uses: actions/checkout@v7
129129

130130
- name: Build MCP plugin
131131
run: make -C mcp plugin
@@ -158,7 +158,7 @@ jobs:
158158
python-version: ["3.10", "3.11", "3.12", "3.13"]
159159

160160
steps:
161-
- uses: actions/checkout@v6
161+
- uses: actions/checkout@v7
162162

163163
- name: Set up Python
164164
uses: actions/setup-python@v6
@@ -235,7 +235,7 @@ jobs:
235235
tz: ["UTC", "America/New_York", "Europe/London", "Asia/Tokyo"]
236236

237237
steps:
238-
- uses: actions/checkout@v6
238+
- uses: actions/checkout@v7
239239

240240
- name: Set up Python
241241
uses: actions/setup-python@v6

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
build:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
fetch-depth: 0
3030
# For workflow_dispatch, checkout the specific tag
@@ -72,7 +72,7 @@ jobs:
7272
group: docs-deploy
7373
cancel-in-progress: false
7474
steps:
75-
- uses: actions/checkout@v6
75+
- uses: actions/checkout@v7
7676
with:
7777
fetch-depth: 0
7878
# For workflow_dispatch, checkout the specific tag

.github/workflows/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
sync:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
- name: Sync labels
2020
uses: EndBug/label-sync@v2
2121
with:

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 10
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v6

.github/workflows/openapi-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 10
1212

1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515

1616
- name: Set up Python
1717
uses: actions/setup-python@v6

.github/workflows/plugin-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
token: ${{ secrets.GITHUB_TOKEN }}
2121

.github/workflows/plugin-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo "Mode: workflow_dispatch (manual), tag=$TAG_NAME, version=$VERSION"
6060
fi
6161
62-
- uses: actions/checkout@v6
62+
- uses: actions/checkout@v7
6363
with:
6464
ref: ${{ steps.version.outputs.is_api_trigger == 'true' && 'main' || (github.event.inputs.tag || github.ref) }}
6565

.github/workflows/release-detect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sdk_version: ${{ steps.versions.outputs.sdk }}
3131
mcp_version: ${{ steps.versions.outputs.mcp }}
3232
steps:
33-
- uses: actions/checkout@v6
33+
- uses: actions/checkout@v7
3434
with:
3535
ref: ${{ github.event.workflow_run.head_sha }}
3636
fetch-depth: 0 # Full history needed to check tags

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
publish_target: ${{ steps.meta.outputs.publish_target }}
4343
is_api_trigger: ${{ steps.meta.outputs.is_api_trigger }}
4444
steps:
45-
- uses: actions/checkout@v6
45+
- uses: actions/checkout@v7
4646
with:
4747
fetch-depth: 0
4848

@@ -128,7 +128,7 @@ jobs:
128128
runs-on: ubuntu-latest
129129
needs: validate
130130
steps:
131-
- uses: actions/checkout@v6
131+
- uses: actions/checkout@v7
132132
with:
133133
fetch-depth: 0
134134

@@ -169,7 +169,7 @@ jobs:
169169
runs-on: ubuntu-latest
170170
needs: [validate, test]
171171
steps:
172-
- uses: actions/checkout@v6
172+
- uses: actions/checkout@v7
173173
with:
174174
fetch-depth: 0
175175

@@ -263,7 +263,7 @@ jobs:
263263
needs: [validate, build, publish]
264264
if: ${{ needs.validate.outputs.publish_target == 'pypi' }}
265265
steps:
266-
- uses: actions/checkout@v6
266+
- uses: actions/checkout@v7
267267

268268
- name: Set up Python
269269
uses: actions/setup-python@v6
@@ -351,7 +351,7 @@ jobs:
351351
group: docs-deploy
352352
cancel-in-progress: false
353353
steps:
354-
- uses: actions/checkout@v6
354+
- uses: actions/checkout@v7
355355
with:
356356
fetch-depth: 0
357357

.github/workflows/version-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
check-versions:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313

1414
- name: Extract SDK version
1515
id: sdk

0 commit comments

Comments
 (0)