Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-fastapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# 1. 코드 체크아웃 (워크플로우가 레포 코드에 접근할 수 있게 함)
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ secrets.GIT_TOKEN }} # yaml 업데이트 후 push할 때 필요

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# 1. 코드 체크아웃 (워크플로우가 레포 코드에 접근할 수 있게 함)
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ secrets.GIT_TOKEN }} # yaml 업데이트 후 push할 때 필요

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-springboot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# 1. 코드 체크아웃 (워크플로우가 레포 코드에 접근할 수 있게 함)
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ secrets.GIT_TOKEN }} # yaml 업데이트 후 push할 때 필요

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-fastapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run:
working-directory: backend/fastapi
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
working-directory: backend/fastapi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-springboot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand Down