AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Github Actions Dependencies Security

skill-eaglesakura-agent-skills-github-actions-dependencies-security · by eaglesakura

>-

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-eaglesakura-agent-skills-github-actions-dependencies-security

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-eaglesakura-agent-skills-github-actions-dependencies-security)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Github Actions Dependencies Security? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GitHub Actions / ワークフロー構築

.github/workflows の YAML を新規作成・改修するとき、セキュリティ上の基本として 外部 Action はコミット SHA にピン留めする。 フローティングタグ(@v2 等)のままにしない。

いつ使うか

  • Workflow YAML の追加・編集(uses: を含む)
  • 既存 uses: owner/action@vX を SHA ピンに直すとき
  • 使う Action の tag / Release と SHA を gh で確認するとき

いつ使わないか

  • CI 失敗のログ調査・原因切り分けだけ(必要なら本 SKILL と併用)
  • Git ブランチ命名だけ(ブランチ規約向けの SKILL がある場合はそちら)
  • アプリケーションコードやテスト実装そのもの
  • GitHub 以外の CI(CircleCI 等)だけの作業

作業手順

  1. 追加/変更する uses: を洗い出す(サードパーティ・再利用可能ワークフロー)
  2. 使いたい版(tag / Release)を決める
  3. ghその版が指すコミット SHA を取得する(タグオブジェクトの SHA で止めない)
  4. uses: owner/action@{40文字のコミットSHA} と書き、横に # owner/action@version コメントを付ける
  5. レビューしやすいよう、なぜその版かを短く残してよい

Security / SHA ピン留め

外部 Action・再利用ワークフローは、必ず コミット SHA で固定する。タグやブランチ名は動く参照であり、サプライチェーン改ざん時に意図せず新しい成果物を取り込む余地がある。

DO

  • owner/action@{commit_sha} を使う
  • # owner/action@version をコメントし、人間が版を追いやすくする
  • gh で tag / Release とコミット SHA を突き合わせる
- name: Setup mise
  uses: jdx/mise-action@{40-char-commit-sha} # jdx/mise-action@v2
# 最新 Release のタグ名
gh api repos/jdx/mise-action/releases/latest --jq '.tag_name'

# タグ一覧(概要)
gh api repos/jdx/mise-action/git/matching-refs/tags \
  --jq '.[] | {tag: (.ref | sub("^refs/tags/"; "")), sha: .object.sha, type: .object.type}'

# 指定タグが指すコミット SHA(annotated tag でもコミットまで辿る例)
TAG=v2
REF=$(gh api "repos/jdx/mise-action/git/ref/tags/${TAG}")
TYPE=$(echo "$REF" | jq -r .object.type)
SHA=$(echo "$REF" | jq -r .object.sha)
if [ "$TYPE" = "tag" ]; then
  SHA=$(gh api "repos/jdx/mise-action/git/tags/${SHA}" --jq .object.sha)
fi
echo "$SHA"
  • actions/checkout 等の公式 Action も、リポジトリ方針としてピン留め対象に含める

DO NOT

# フローティングタグのみ — サプライチェーンリスクが残る
- name: Setup mise
  uses: jdx/mise-action@v2
  • @main / @master などのブランチ参照で外部 Action を取らない
  • タグオブジェクト SHA をコミット SHA と取り違えたままピンしない(annotated tag は剥がす)

ナレッジベース

DO: ピンはコミット、コメントは人間用の版名

  • 実行の信頼は SHA、可読性はコメント、の役割分担

DO: 版を上げるときも「新 tag → 新コミット SHA」で更新する

  • コメントの版名だけ変えて SHA を放置しない

DO NOT: @v1 のようなメジャーだけ指定で「十分安全」と判断する

  • タグは動かされ得る。固定はコミット SHA

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.