diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index faf5005..e9b6834 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,17 +12,17 @@ jobs:
       - name: Prepare repository
         run: git fetch --unshallow --tags
 
-      - name: Use Node.js 16.x
-        uses: actions/setup-node@v3
+      - name: Use Node.js 15.x
+        uses: actions/setup-node@v1
         with:
-          node-version: 16.x
+          node-version: 15.x
 
       - name: Install dependencies
-        run: npm install --ignore-scripts
+        uses: bahmutov/npm-install@v1
 
       - name: Create Release
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
           NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
         run: |
-          npm run release
+          npm run release
\ No newline at end of file