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
Ref to #1684, undici is added as a dependency to @actions/github recently: #1957. However, the package version for @actions/github is not bumped and published - latest version of the package still doesn't have undici as a dependency. In our PNPM repository, our custom actions using @actions/github fail because we cannot find undici. At the moment, we can work around it by adding a package extension. However, for the permanent fix, I believe we need to publish a new version of @actions/github with the recent change.
The code for @actions/github@6.0.0 can be found here: https://www.npmjs.com/package/@actions/github?activeTab=code. If you look at package.json, you will see that undici is missing. And this is the output when i run npm info @actions/github@6.0.0 (you can see undici is not part of dependencies here either):
I skimmed through the docs in the repo and I couldn't find information around how the version bumps are done in the repository. I'm happy to look into it if there are any guidelines for it.
The text was updated successfully, but these errors were encountered:
Ref to #1684,
undici
is added as a dependency to@actions/github
recently: #1957. However, the package version for@actions/github
is not bumped and published - latest version of the package still doesn't haveundici
as a dependency. In our PNPM repository, our custom actions using@actions/github
fail because we cannot findundici
. At the moment, we can work around it by adding a package extension. However, for the permanent fix, I believe we need to publish a new version of@actions/github
with the recent change.The code for
@actions/github@6.0.0
can be found here: https://www.npmjs.com/package/@actions/github?activeTab=code. If you look atpackage.json
, you will see thatundici
is missing. And this is the output when i runnpm info @actions/github@6.0.0
(you can seeundici
is not part of dependencies here either):I skimmed through the docs in the repo and I couldn't find information around how the version bumps are done in the repository. I'm happy to look into it if there are any guidelines for it.
The text was updated successfully, but these errors were encountered: