I have a project that started failing because the latest version of pnpm is installed, despite us specifying the version input directly:
It's a composite action with the following steps:
- id: pnpm
uses: pnpm/action-setup@v6
with:
version: "10.33.2"
dest: ${{ github.action_path }}/setup-pnpm
- shell: bash
run: |
${{ steps.pnpm.outputs.bin_dest }}/pnpm --version
${{ steps.pnpm.outputs.bin_dest }}/pnpm install
working-directory: ${{ github.action_path }}
And there's no version in package.json, we expect the version input to be respected.
{
"devDependencies": {
"pajv": "^1.2.0"
}
}
Project: https://github.com/freckle/datadog-service-action
PR with failures: freckle/datadog-service-action#24.
This is happening with @v6 of the action, @v5 always worked correctly in this regard.
I have a project that started failing because the latest version of
pnpmis installed, despite us specifying theversioninput directly:It's a composite action with the following steps:
And there's no version in
package.json, we expect theversioninput to be respected.{ "devDependencies": { "pajv": "^1.2.0" } }Project: https://github.com/freckle/datadog-service-action
PR with failures: freckle/datadog-service-action#24.
This is happening with
@v6of the action,@v5always worked correctly in this regard.