Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(workspace): upgrade pnpm action setup to avoid the deprecation warnings (#3056)

authored by

Jovi De Croock and committed by
GitHub
9f91c2bd 918388be

+12 -12
+8 -8
.github/workflows/ci.yml
··· 23 23 node-version: 18 24 24 25 25 - name: Setup pnpm 26 - uses: pnpm/action-setup@v2.2.2 26 + uses: pnpm/action-setup@v2.2.4 27 27 with: 28 28 version: 7 29 29 run_install: false 30 30 31 31 - name: Get pnpm store directory 32 32 id: pnpm-store 33 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 33 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 34 34 35 35 - name: Use pnpm store 36 36 uses: actions/cache@v3 ··· 71 71 node-version: 18 72 72 73 73 - name: Setup pnpm 74 - uses: pnpm/action-setup@v2.2.2 74 + uses: pnpm/action-setup@v2.2.4 75 75 with: 76 76 version: 7 77 77 run_install: false 78 78 79 79 - name: Get pnpm store directory 80 80 id: pnpm-store 81 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 81 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 82 82 83 83 - name: Use pnpm store 84 84 uses: actions/cache@v3 ··· 120 120 node-version: 18 121 121 122 122 - name: Setup pnpm 123 - uses: pnpm/action-setup@v2.2.2 123 + uses: pnpm/action-setup@v2.2.4 124 124 with: 125 125 version: 7 126 126 run_install: false 127 127 128 128 - name: Get pnpm store directory 129 129 id: pnpm-store 130 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 130 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 131 131 132 132 - name: Use pnpm store 133 133 uses: actions/cache@v3 ··· 175 175 node-version: 18 176 176 177 177 - name: Setup pnpm 178 - uses: pnpm/action-setup@v2.2.2 178 + uses: pnpm/action-setup@v2.2.4 179 179 with: 180 180 version: 7 181 181 run_install: false 182 182 183 183 - name: Get pnpm store directory 184 184 id: pnpm-store 185 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 185 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 186 186 187 187 - name: Use pnpm store 188 188 uses: actions/cache@v3
+2 -2
.github/workflows/release.yml
··· 20 20 node-version: 18 21 21 22 22 - name: Setup pnpm 23 - uses: pnpm/action-setup@v2.2.2 23 + uses: pnpm/action-setup@v2.2.4 24 24 with: 25 25 version: 7 26 26 run_install: false 27 27 28 28 - name: Get pnpm store directory 29 29 id: pnpm-store 30 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 30 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 31 31 32 32 - name: Use pnpm store 33 33 uses: actions/cache@v3
+2 -2
.github/workflows/site.yml
··· 29 29 node-version: 18 30 30 31 31 - name: Setup pnpm 32 - uses: pnpm/action-setup@v2.2.2 32 + uses: pnpm/action-setup@v2.2.4 33 33 with: 34 34 version: 7 35 35 run_install: false 36 36 37 37 - name: Get pnpm store directory 38 38 id: pnpm-store 39 - run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 39 + run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 40 40 41 41 - name: Use pnpm store 42 42 uses: actions/cache@v3