From bf8511d0e6549339ad99a59456cd7baca719f3ce Mon Sep 17 00:00:00 2001 From: Fatih Kaya <1994274@gmail.com> Date: Fri, 8 Nov 2024 11:22:30 +0300 Subject: [PATCH] build: set pnpm version --- .github/workflows/deploy-docs.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 495c3a6..76306c2 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -3,8 +3,8 @@ name: Deploy Documentation site to Pages on: # Runs on pushes targeting the default branch push: - branches: ['master'] - paths: ['docs/**'] + branches: ["master"] + paths: ["docs/**"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -17,7 +17,7 @@ permissions: # Allow one concurrent deployment concurrency: - group: 'pages' + group: "pages" cancel-in-progress: true jobs: @@ -51,10 +51,12 @@ jobs: fi - name: Install pnpm uses: pnpm/action-setup@v4 + with: + version: 9.0.6+sha1.648f6014eb363abb36618f2ba59282a9eeb3e879 - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '22' + node-version: "22" cache: ${{ steps.detect-package-manager.outputs.manager }} - name: Setup Pages uses: actions/configure-pages@v2