diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 88f8127aa4..435cc93368 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -44,7 +44,7 @@ jobs: asset_name: html5-boilerplate_${{ steps.get_version.outputs.VERSION }}.zip asset_content_type: application/zip - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/push-to-template.yaml b/.github/workflows/push-to-template.yaml index 39c2aa1954..5342773eca 100644 --- a/.github/workflows/push-to-template.yaml +++ b/.github/workflows/push-to-template.yaml @@ -23,7 +23,7 @@ jobs: ${{ runner.os }}-node- - uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 'lts/*' - name: Install dependencies diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d28850089c..450713e28c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -28,7 +28,7 @@ jobs: ${{ runner.os }}-node- - uses: actions/checkout@v4 - name: Run tests ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci