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'