-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Action is not verified in Github Marketplace #74
Comments
Came here to ask for this. Have you considered becoming a verified creator on Github Marketplace? Due to corporate policy we're not allowed to use 3rd party Actions. |
I suppose there is always the workaround of |
I encountered the same problem due to policy on GitHub Action. Here's my workaround. WorkaroundUse
NoticeOne Should note that |
The - name: Install pnpm
run: |
eval export $(echo PNPM_HOME=$HOME/.pnpm | tee -a $GITHUB_ENV);
echo "$PNPM_HOME" >> $GITHUB_PATH
curl -fsSL https://get.pnpm.io/install.sh | bash -
- name: Install node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- run: pnpm i --frozen-lockfile |
Any updates on this? |
My company has recently tightened up the security settings for Github actions and only allowing verified Github actions to be run as part of our Github workflows. Are there any plans to verify the
pnpm/action-setup@v2
action on Github Marketplace?The text was updated successfully, but these errors were encountered: