Skip to content

Commit f700342

Browse files
chore(actions)(deps): Bump the github-actions group across 1 directory with 2 updates
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `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) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8587b47 commit f700342

10 files changed

Lines changed: 19 additions & 19 deletions

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
code: ${{ steps.filter.outputs.code }}
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- uses: dorny/paths-filter@v4
2626
id: filter
2727
with:
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Checkout code
5454
if: needs.changes.outputs.code == 'true'
55-
uses: actions/checkout@v6
55+
uses: actions/checkout@v7
5656

5757
- name: Install uv
5858
if: needs.changes.outputs.code == 'true'
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Upload coverage to Codecov
9595
if: needs.changes.outputs.code == 'true'
96-
uses: codecov/codecov-action@v6
96+
uses: codecov/codecov-action@v7
9797
with:
9898
files: coverage.xml
9999
fail_ci_if_error: false
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Checkout code
110110
if: needs.changes.outputs.code == 'true'
111-
uses: actions/checkout@v6
111+
uses: actions/checkout@v7
112112

113113
- name: Install uv
114114
if: needs.changes.outputs.code == 'true'

.github/workflows/codespaces-prebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424

2525
- name: Log prebuild trigger
2626
run: |

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# If you do not check out your code, Copilot will do this for you.
3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@v7
3434

3535
- name: Install uv
3636
uses: astral-sh/setup-uv@v7

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@v7
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/release-mcp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222

2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v7
@@ -73,7 +73,7 @@ jobs:
7373
permissions:
7474
contents: write
7575
steps:
76-
- uses: actions/checkout@v6
76+
- uses: actions/checkout@v7
7777

7878
# ``scripts/build_mcpb.py`` is stdlib-only and shells out to the ``mcpb``
7979
# CLI — no project deps are needed for this job. Use setup-python

.github/workflows/release-ts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
permissions:
2121
contents: read
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 0
2626

@@ -66,7 +66,7 @@ jobs:
6666
released: ${{ steps.release.outputs.new_release_published }}
6767
version: ${{ steps.release.outputs.new_release_version }}
6868
steps:
69-
- uses: actions/checkout@v6
69+
- uses: actions/checkout@v7
7070
with:
7171
fetch-depth: 0
7272
persist-credentials: false

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
contents: read
2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@v7
2828
with:
2929
fetch-depth: 0
3030

@@ -66,7 +66,7 @@ jobs:
6666
version: ${{ steps.release.outputs.version }}
6767
tag: ${{ steps.release.outputs.tag }}
6868
steps:
69-
- uses: actions/checkout@v6
69+
- uses: actions/checkout@v7
7070
with:
7171
fetch-depth: 0
7272
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
@@ -133,7 +133,7 @@ jobs:
133133
version: ${{ steps.release.outputs.version }}
134134
tag: ${{ steps.release.outputs.tag }}
135135
steps:
136-
- uses: actions/checkout@v6
136+
- uses: actions/checkout@v7
137137
with:
138138
fetch-depth: 0
139139
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
@@ -235,7 +235,7 @@ jobs:
235235
permissions:
236236
contents: write
237237
steps:
238-
- uses: actions/checkout@v6
238+
- uses: actions/checkout@v7
239239
with:
240240
fetch-depth: 0
241241
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
@@ -276,7 +276,7 @@ jobs:
276276
packages: write
277277
steps:
278278
- name: Checkout code
279-
uses: actions/checkout@v6
279+
uses: actions/checkout@v7
280280
with:
281281
fetch-depth: 0
282282

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222

2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v7

.github/workflows/sync-openapi-spec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sync:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
# Always sync against main, regardless of which ref triggered the
3030
# workflow. Manual `workflow_dispatch` from a feature branch

.github/workflows/update-mcp-dependency.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: write
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121
with:
2222
fetch-depth: 0
2323
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}

0 commit comments

Comments
 (0)