Skip to content

Commit 60f0c85

Browse files
committed
Upgrade actions/checkout to v5 and bump SDK
Update CI gitleaks job to use actions/checkout@v5 and fetch full history (fetch-depth: 0) so gitleaks can resolve parent commits. Bump @modelcontextprotocol/sdk to v1.27.1 in package.json and regenerate pnpm lockfile. Add .tmp gitleaks artifacts (LICENSE, README, binary, report, darwin tarball).
1 parent fdce03c commit 60f0c85

File tree

8 files changed

+720
-34
lines changed

8 files changed

+720
-34
lines changed

.github/workflows/security.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
gitleaks:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
17+
with:
18+
# Gitleaks scans the commit range on pull requests and needs parent
19+
# commits available locally to resolve head^..head.
20+
fetch-depth: 0
1721
- name: Gitleaks scan
1822
uses: gitleaks/gitleaks-action@v2
1923
env:
@@ -32,7 +36,7 @@ jobs:
3236
audit:
3337
runs-on: ubuntu-latest
3438
steps:
35-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
3640
- uses: pnpm/action-setup@v4
3741
- uses: actions/setup-node@v4
3842
with:

.tmp/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Zachary Rice
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)