forked from slsa-framework/slsa-verifier
-
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.
Move computesha256 to typescript (slsa-framework#546)
* Move computesha256 to typescript - Port the computesha256 from bash to typescript. Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Updated to use the native crypto library - Updated to use the native crypto library - Included README instructions - Some minor nits. Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Included additional console outputs for debugging Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Removed .prettierrc.json Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Included workflow to validate the computesha256 - Included the workflow to validate the computesha256 github action Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Code review fixes - Included permissions for the workflow - Renamed the workflow file - Updated the input variable to `path` - Changed the `run` function to non-async - Updated the README instructions - Included the tag for pinned SHA * Updated to npm ci form npm i Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Add new line * Fix spaces * Fixed the error in actions code. * Moved the action within the pre-submit.actions.yml - Moved the action within the pre-submit.actions.yml - Removed the redundant instructions in README Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> * Remove extra line Co-authored-by: Ian Lewis <ianlewis@google.com>
- Loading branch information
1 parent
c4e3be2
commit c88f03e
Showing
12 changed files
with
2,085 additions
and
19 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,99 @@ | ||
# Dependency directory | ||
node_modules | ||
|
||
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
|
||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# TypeScript cache | ||
*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
|
||
# next.js build output | ||
.next | ||
|
||
# nuxt.js build output | ||
.nuxt | ||
|
||
# vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# OS metadata | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Ignore built ts files | ||
__tests__/runner/* | ||
lib/**/* |
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,3 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ |
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,7 @@ | ||
# Compute SHA256 | ||
|
||
## How to build this action in development | ||
- Install node | ||
- Install typescript | ||
- `npm ci` | ||
- `npm run all` |
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
Oops, something went wrong.