Install
$ agentstack add skill-eaglesakura-agent-skills-github-actions-dependencies-security ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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 等)だけの作業
作業手順
- 追加/変更する
uses:を洗い出す(サードパーティ・再利用可能ワークフロー) - 使いたい版(tag / Release)を決める
ghで その版が指すコミット SHA を取得する(タグオブジェクトの SHA で止めない)uses: owner/action@{40文字のコミットSHA}と書き、横に# owner/action@versionコメントを付ける- レビューしやすいよう、なぜその版かを短く残してよい
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.
- Author: eaglesakura
- Source: eaglesakura/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.