You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is to make you aware that some of your customers may have disabled running actions other than those cloned to their own organization. In our use case, for security reasons we consider all third-party actions to be unsafe, therefore we clone an action we need to run in our GITHUB CI environment, which allows us to only run a select number of actions.
Therefore, in our case it's impossible to run readmeio/rdme since it depends on setup-node, so we see this error message:
Error: Bad request - actions/setup-node@v2 is not allowed to be used in <company_name>. Actions in this
workflow must be within a repository owned by <company_name> or match the following: actions/setup-node@v2.
The solution may be quite trivial: given that both NodeJS and npm are provisioned by default, you hardly even need to run that action.
Will you consider not using any third-party actions please?
The text was updated successfully, but these errors were encountered:
To provide a bit of background on why we originally did this: we wanted to guarantee that the runner was using a version of Node.js that supported our package-lock.json, which is lockfileVersion@2 (i.e. Node v16+).
Hey,
This is to make you aware that some of your customers may have disabled running actions other than those cloned to their own organization. In our use case, for security reasons we consider all third-party actions to be unsafe, therefore we clone an action we need to run in our GITHUB CI environment, which allows us to only run a select number of actions.
Therefore, in our case it's impossible to run
readmeio/rdme
since it depends on setup-node, so we see this error message:The solution may be quite trivial: given that both NodeJS and
npm
are provisioned by default, you hardly even need to run that action.Will you consider not using any third-party actions please?
The text was updated successfully, but these errors were encountered: