diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index d0fdeff..64e3f87 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -82,7 +82,7 @@ jobs: with: ssh-private-key: ${{ secrets.uses_private_keys }} - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ inputs.eslint_node-ver }} registry-url: 'https://registry.npmjs.org' @@ -116,7 +116,7 @@ jobs: with: ssh-private-key: ${{ secrets.uses_private_keys }} - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ inputs.stylelint_node-ver }} registry-url: 'https://registry.npmjs.org' @@ -148,7 +148,7 @@ jobs: with: ssh-private-key: ${{ secrets.uses_private_keys }} - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ inputs.jest_node-ver }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/js-eslint.yml b/.github/workflows/js-eslint.yml index bef17fb..f39b30a 100644 --- a/.github/workflows/js-eslint.yml +++ b/.github/workflows/js-eslint.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Install node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '16.x' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/scss-stylelint.yml b/.github/workflows/scss-stylelint.yml index d28db2e..b044cdc 100644 --- a/.github/workflows/scss-stylelint.yml +++ b/.github/workflows/scss-stylelint.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Install node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '16.x' registry-url: 'https://registry.npmjs.org'