From f127dd13c03deb4ed00155c56ee9b2aa65cf6ef9 Mon Sep 17 00:00:00 2001 From: TOUCH Yong An Date: Mon, 15 Jan 2024 16:27:32 +0700 Subject: [PATCH] update action --- .github/actions/hello-world-action/action.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/actions/hello-world-action/action.yml b/.github/actions/hello-world-action/action.yml index 5df59bc..17866f4 100644 --- a/.github/actions/hello-world-action/action.yml +++ b/.github/actions/hello-world-action/action.yml @@ -1,7 +1,9 @@ -jobs: - my_first_job: - steps: - - name: Setup node v14 - uses: actions/setup-node@v3 - with: - node-version: '14' +name: Setup node v14 +description: Setup node v14 to test custom action +runs: + using: 'composite' + steps: + - name: Setup node v14 + uses: actions/setup-node@v3 + with: + node-version: '14'