diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 4be4a670..e02470b2 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -40,7 +40,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - name: Setup Node.js 18.x + - name: Set up Node.js 18.x uses: actions/setup-node@v3.8.1 with: node-version: 18 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82ec292d..9807fe61 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: # This forces changesets to use git user, provided by GITHUB_TOKEN env var persist-credentials: false - - name: Setup node + - name: Set up node uses: actions/setup-node@v3.8.1 with: node-version: 18 diff --git a/build-publish-alpha-package/action.yml b/build-publish-alpha-package/action.yml index 63ca51ee..c01af50a 100644 --- a/build-publish-alpha-package/action.yml +++ b/build-publish-alpha-package/action.yml @@ -30,7 +30,7 @@ runs: run: | npm set "//registry.npmjs.org/:_authToken=$NPM_TOKEN" - - name: Setup node + - name: Set up node uses: actions/setup-node@v3.2.0 with: node-version: ${{ inputs.node-version }} diff --git a/build-push-image/action.yml b/build-push-image/action.yml index 8c22032c..0b3c47be 100644 --- a/build-push-image/action.yml +++ b/build-push-image/action.yml @@ -36,7 +36,7 @@ inputs: runs: using: composite steps: - - name: Checkout davinci + - name: Check out davinci uses: actions/checkout@v3 with: repository: toptal/davinci @@ -44,7 +44,7 @@ runs: path: davinci ref: ${{ inputs.davinci-branch }} - - name: Setup node + - name: Set up node uses: actions/setup-node@v3.2.0 with: node-version: ${{ inputs.node-version }}