Skip to content

Commit 2e6b3dc

Browse files
authored
Merge branch 'main' into winget
2 parents e5825f3 + 6c5376f commit 2e6b3dc

File tree

7 files changed

+188
-135
lines changed

7 files changed

+188
-135
lines changed

.github/workflows/_security-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616

1717
- name: Scan repo
18-
uses: aquasecurity/trivy-action@6c175e9c4083a92bbca2f9724c8a5e33bc2d97a5 # 0.30.0
18+
uses: aquasecurity/trivy-action@76071ef0d7ec797419534a183b498b4d6366cf37 # 0.31.0
1919
with:
2020
scan-type: 'fs'
2121
scan-ref: '.'

.github/workflows/_static-checks.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,3 @@ jobs:
2525

2626
- name: Run Prettier
2727
run: npm run prettier
28-
29-
build:
30-
name: Build site
31-
runs-on: ubuntu-latest
32-
steps:
33-
- name: Checkout Repository
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
35-
36-
- name: Setup
37-
uses: ./.github/actions/setup
38-
39-
- name: Build site
40-
run: npm run build

.github/workflows/update-toolhive-reference.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,9 @@ jobs:
3939
echo "changed=true" >> $GITHUB_OUTPUT
4040
fi
4141
42-
- name: Create branch, commit, and push
43-
if: steps.git-diff.outputs.changed == 'true'
44-
run: |
45-
BRANCH=update-toolhive-reference-${VERSION}
46-
git checkout -b "$BRANCH"
47-
git commit -am "Update ToolHive reference docs for ${VERSION}"
48-
git push origin "$BRANCH"
49-
env:
50-
VERSION: ${{ steps.imports.outputs.version }}
51-
5242
- name: Create Pull Request
5343
if: steps.git-diff.outputs.changed == 'true'
54-
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
44+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
5545
with:
5646
branch: update-toolhive-reference-${{ steps.imports.outputs.version }}
5747
title: |
@@ -61,3 +51,4 @@ jobs:
6151
commit-message: |
6252
Update ToolHive reference docs for ${{ steps.imports.outputs.version }}
6353
delete-branch: true
54+
sign-commits: true

docs/toolhive/reference/cli/thv_rm.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ thv rm [container-name] [flags]
1313
### Options
1414

1515
```
16-
-f, --force Force removal of a running container
17-
-h, --help help for rm
16+
-h, --help help for rm
1817
```
1918

2019
### Options inherited from parent commands

docs/toolhive/reference/cli/thv_run.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ thv run [flags] SERVER_OR_IMAGE_OR_PROTOCOL [-- ARGS...]
3737
### Options
3838

3939
```
40+
--audit-config string Path to the audit configuration file
4041
--authz-config string Path to the authorization configuration file
4142
--ca-cert string Path to a custom CA certificate file to use for container builds
43+
--enable-audit Enable audit logging with default configuration
4244
-e, --env stringArray Environment variables to pass to the MCP server (format: KEY=VALUE)
4345
-f, --foreground Run in foreground mode (block until container exits)
4446
-h, --help help for run

docs/toolhive/reference/cli/thv_secret_provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Configure the secrets provider
66

77
Configure the secrets provider.
88
Valid secrets providers are:
9-
- encrypted: Encrypted secrets provider
10-
- 1password: 1Password secrets provider (currently only supports getting secrets)
9+
- encrypted: Full read-write secrets provider
10+
- 1password: Read-only secrets provider
1111

1212
```
1313
thv secret provider <name> [flags]

0 commit comments

Comments
 (0)