TavernKeeper Scan Report

jeremyoha450/SillyTavern-Character-Continuity-Manager

Commit 5513923 Reviewed

No material or immediate-danger concern was identified in this review.

This advisory report describes what the named tools and contextual reviewer found at one exact commit. Unknown or unobserved behavior may still exist.

0 immediate danger 0 material 4 low

What this review found

No material or immediate-danger item was identified.

Minor cautions

zizmor reported artipacked

Minor caution · high confidence

The workflow checks out code using a standard GitHub action that temporarily stores a GitHub access token on the runner. Since the workflow never uploads any files or performs any git operations that could expose that token, there is no real path for it to leak.

Technical evidence

Scanner reason: zizmor matched workflow-security rule artipacked in this repository.

Contextual assessment: The checkout action persists the GITHUB_TOKEN in local git config by default. However, this workflow contains no artifact upload steps, no git push or remote operations after checkout, and no steps that would exfiltrate the persisted credential. The token is never used beyond the initial clone. The risk is theoretical and limited to the CI runner environment.

Impact: low · Exploitability: unlikely

Developer action: Add `persist-credentials: false` to the checkout step if no subsequent git operations are needed, as a defense-in-depth hygiene measure.

Scanner
zizmor 1.28.0
Rule
artipacked
File role
tooling
Source
.github/workflows/ci.yml:11

zizmor reported unpinned-uses

Minor caution · high confidence

The workflow uses a version label for a standard GitHub action instead of locking it to an exact code snapshot. This is common but slightly less secure because it depends on the action's repository staying trustworthy.

Technical evidence

Scanner reason: zizmor matched workflow-security rule unpinned-uses in this repository.

Contextual assessment: The checkout action is referenced by major version tag rather than a commit SHA. This is widespread practice but means the workflow trusts GitHub to serve the expected action version. A compromise of the action repository could alter behavior. The workflow only runs tests and syntax checks with no secret material beyond the default token, limiting impact.

Impact: low · Exploitability: unlikely

Developer action: Pin the action to a full commit SHA for stronger supply-chain integrity if stricter hygiene is desired.

Scanner
zizmor 1.28.0
Rule
unpinned-uses
File role
tooling
Source
.github/workflows/ci.yml:11

zizmor reported excessive-permissions

Minor caution · high confidence

The workflow does not explicitly limit what its built-in GitHub token is allowed to do. Since the workflow only runs tests and checks and never uses the token for any write operation, the broad permissions are not actually exercised.

Technical evidence

Scanner reason: zizmor matched workflow-security rule excessive-permissions in this repository.

Contextual assessment: The workflow does not declare an explicit permissions block, so the GITHUB_TOKEN receives the repository default permissions. No step in the workflow uses the token for writes, deployments, releases, or issue comments. All steps are read-only build and test operations. The broad default permissions are unused and therefore do not create a concrete exploitation path.

Impact: low · Exploitability: unlikely

Developer action: Add a top-level `permissions: contents: read` block to follow least-privilege hygiene.

Scanner
zizmor 1.28.0
Rule
excessive-permissions
File role
tooling
Source
.github/workflows/ci.yml:8-25

zizmor reported unpinned-uses

Minor caution · high confidence

The workflow uses a version label for the Node.js setup action instead of locking it to an exact code snapshot. This is common but slightly less secure because it depends on the action's repository staying trustworthy.

Technical evidence

Scanner reason: zizmor matched workflow-security rule unpinned-uses in this repository.

Contextual assessment: The setup-node action is referenced by major version tag rather than a commit SHA. This is common practice but introduces supply-chain trust in the action repository. The action only configures Node.js and npm caching; it does not handle secrets or perform network operations beyond package cache restoration. Impact of a hypothetical compromise is limited to the CI environment.

Impact: low · Exploitability: unlikely

Developer action: Pin the action to a full commit SHA for stronger supply-chain integrity if stricter hygiene is desired.

Scanner
zizmor 1.28.0
Rule
unpinned-uses
File role
tooling
Source
.github/workflows/ci.yml:12
Expected scanner matches (0)

None.

Coverage and limitations

Tools

Limitations

Technical scan identity