
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
github.com/goplugin/plugin-testing-framework/tools/workflowresultparser
This Go script fetches jobs from a specified GitHub Actions workflow run, filters them based on a regex pattern, and outputs the results. The output can be saved to a specified file and optionally stored under a named key.
go run main.go --githubToken <token> --githubRepo <repository> --workflowRunID <workflow_run_id> --jobNameRegex <regex_pattern> [options]
go run main.go --githubToken ghp_exampleToken --githubRepo owner/repo --workflowRunID 123456789 --jobNameRegex "Test-.*" --outputFile results.json
{
"results": [
{
"conclusion": ":white_check_mark:",
"cap": "1",
"html_url": "http://example.com/job1"
},
{
"conclusion": ":x:",
"cap": "2",
"html_url": "http://example.com/job2"
}
]
}
--githubToken
: GitHub token for authentication (required).--githubRepo
: GitHub repository in the format owner/repo
(required).--workflowRunID
: ID of the GitHub Actions workflow run (required).--jobNameRegex
: Regex pattern to match job names (required).--namedKey
: Optional named key under which results will be stored.--outputFile
: Optional output file name to save the results.The script will panic and display error messages in the following scenarios:
--githubToken
, --githubRepo
, --workflowRunID
, --jobNameRegex
.--namedKey
flag to categorize results in the output file for better organization.FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.