1
0

Fix GitHub Actions warning for setup-node inputs

- Move 'ref' and 'fetch-depth' parameters from setup-node to checkout action
- These parameters belong to actions/checkout, not actions/setup-node
- Resolves "Unexpected input(s)" warnings in workflow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-18 15:28:56 +09:00
parent 2cd1a62e5d
commit c050a639af

View File

@@ -11,11 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 23
ref: ${{ github.ref }}
fetch-depth: 0
- run: |
npm install