fix: 为 uses 的 URL 加引号修复 YAML 解析错误

This commit is contained in:
hhs
2026-06-13 10:46:32 +08:00
parent 8c9a9d6020
commit 2ce04dcca1
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ jobs:
run: run:
working-directory: backend working-directory: backend
steps: steps:
- uses: http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4 - uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:

View File

@@ -13,7 +13,7 @@ jobs:
run: run:
working-directory: frontend working-directory: frontend
steps: steps:
- uses: http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4 - uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:

View File

@@ -11,7 +11,7 @@ jobs:
- run: echo "🌿 Branch: ${{ gitea.ref }}, Repo: ${{ gitea.repository }}" - run: echo "🌿 Branch: ${{ gitea.ref }}, Repo: ${{ gitea.repository }}"
- run: echo "🐧 Running on ${{ runner.os }}, workspace: ${{ gitea.workspace }}" - run: echo "🐧 Running on ${{ runner.os }}, workspace: ${{ gitea.workspace }}"
- name: Check out repository code - name: Check out repository code
uses: http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4 uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- run: echo "💡 ${{ gitea.repository }} has been cloned to the runner" - run: echo "💡 ${{ gitea.repository }} has been cloned to the runner"
- name: List files in the repository - name: List files in the repository
run: ls ${{ gitea.workspace }} run: ls ${{ gitea.workspace }}