Skip to content

Commit 2dfb374

Browse files
Copilotfengmk2
andauthored
chore: use taiki-e/checkout-action in GitHub workflows (#1035)
This updates the repository’s GitHub Actions workflows to use `taiki-e/checkout-action` instead of `actions/checkout`. The change is limited to workflow checkout steps and preserves the existing job structure. - **Workflow updates** - Replaced checkout steps in `nodejs.yml` - Replaced the checkout step in `release-image.yml` - **Scope** - No job logic, matrix configuration, permissions, or step ordering changed - `release.yml` is unchanged because it delegates to a reusable workflow and does not define its own checkout step - **Example** ```yaml - name: Checkout Git Source uses: taiki-e/checkout-action@v1 ``` --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: fengmk2 <156269+fengmk2@users.noreply.github.com>
1 parent 9717849 commit 2dfb374

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout Git Source
23-
uses: actions/checkout@v6
23+
uses: taiki-e/checkout-action@v1
2424

2525
- name: Use Node.js
2626
uses: actions/setup-node@v6
@@ -67,7 +67,7 @@ jobs:
6767
- 6379:6379
6868
steps:
6969
- name: Checkout Git Source
70-
uses: actions/checkout@v6
70+
uses: taiki-e/checkout-action@v1
7171

7272
- name: Use Node.js
7373
uses: actions/setup-node@v6
@@ -379,7 +379,7 @@ jobs:
379379
- 5432:5432
380380
steps:
381381
- name: Checkout Git Source
382-
uses: actions/checkout@v6
382+
uses: taiki-e/checkout-action@v1
383383

384384
- name: Use Node.js ${{ matrix.node-version }}
385385
uses: actions/setup-node@v6
@@ -457,7 +457,7 @@ jobs:
457457
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
458458
steps:
459459
- name: Checkout Git Source
460-
uses: actions/checkout@v6
460+
uses: taiki-e/checkout-action@v1
461461

462462
- name: Use Node.js ${{ matrix.node-version }}
463463
uses: actions/setup-node@v6
@@ -506,7 +506,7 @@ jobs:
506506

507507
steps:
508508
- name: Checkout Git Source
509-
uses: actions/checkout@v6
509+
uses: taiki-e/checkout-action@v1
510510

511511
- name: Use Node.js ${{ matrix.node-version }}
512512
uses: actions/setup-node@v6

.github/workflows/release-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v6
46+
uses: taiki-e/checkout-action@v1
4747
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
4848
- name: Log in to the Container registry
4949
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)