This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Run with Docker instead of Node.js
This action requires Node.js 14, but Node.js 12 is the currently-supported version. Related: actions/runner#772
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM node:14-slim | ||
|
||
LABEL name="action-package-audit" | ||
LABEL maintainer="Clay Miller <[email protected]>" | ||
LABEL version="1.0.0" | ||
LABEL repository="https://github/smockle/action-package-audit" | ||
LABEL homepage="https://github/smockle/action-package-audit" | ||
|
||
LABEL com.github.actions.name="Package Audit" | ||
LABEL com.github.actions.description="Requires 2FA for publishing an npm org’s packages" | ||
LABEL com.github.actions.icon="shield" | ||
LABEL com.github.actions.color="blue" | ||
|
||
COPY run.mjs /run.mjs | ||
COPY index.mjs /index.mjs | ||
ENTRYPOINT ["node", "/index.mjs"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters