action-setup icon indicating copy to clipboard operation
action-setup copied to clipboard

Install pnpm package manager

Results 78 action-setup issues
Sort by recently updated
recently updated
newest added

I see two cache setups (one [here](https://github.com/pnpm/action-setup#readme) and the other on [setup-node](https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data)) and I'm unsure which one is the latest or if either made a difference.

I'm not sure, if it is a problem with this github action, but somehow my environment variables are ignored, if i use this action. If i install pnpm via npm,...

``` Run pnpm/action-setup@v[2](https://github.com/Satont/tsuwari/runs/6951188005?check_suite_focus=true#step:4:2).2.2 with: version: 7 run_install: false dest: ~/setup-pnpm Running self-installer... Error: ENOENT: no such file or directory, uv_cwd at process.wrappedCwd (internal/bootstrap/switches/does_own_process_state.js:128:26) at process.cwd (/mnt/volume/gh-runners/2/_work/_actions/pnpm/action-setup/v2.2.2/dist/pnpm.js:[3](https://github.com/Satont/tsuwari/runs/6951188005?check_suite_focus=true#step:4:3)2:23) at ../../node_modules/.pnpm/[email protected].[4](https://github.com/Satont/tsuwari/runs/6951188005?check_suite_focus=true#step:4:4)2/node_modules/get-source/impl/path.js (/mnt/volume/gh-runners/2/_work/_actions/pnpm/action-setup/v2.2.2/dist/pnpm.js:29678:[5](https://github.com/Satont/tsuwari/runs/6951188005?check_suite_focus=true#step:4:5)8) at...

Some companies have pretty strict repository security settings, and it is currently not possible to use pnpm (in github actions) in an organization where `Allow Marketplace actions by verified creators`...

This happens in [Vite](https://github.com/vitejs/vite) and in [faker](https://github.com/faker-js/faker) Some retries solves the issue but it appears really often the last days ![image](https://user-images.githubusercontent.com/7195563/170838386-d8310a16-664e-4632-8ec8-ab461f02b3a8.png)

Checking here I can see the install script is using `https://get.pnpm.io/v6.16.js` https://github.com/pnpm/action-setup/blob/10b4b0b462cfa1a30381c9d7c242194165a466ab/src/install-pnpm/run.ts#L25 Given that the latest 7 version is using `https://get.pnpm.io/install.sh` as the new install script, is there any change...

My Action Step is ` uses: pnpm/[email protected] with: version: 6.x run_install: true ` I am getting below error when running this action Error in CI: ERR_PNPM_FROZEN_LOCKFILE_WITH_OUTDATED_LOCKFILE  Cannot perform a frozen...

We are calling it out that this action does not setup node and we have to explicitly do it, but sometimes it is not obviously enough to read through the...