{"id":11772150,"name":"CodSpeedHQ/action","ecosystem":"actions","description":"Continuous benchmarking and performance checks","homepage":"https://codspeed.io","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/CodSpeedHQ/action","keywords_array":["benchmarking","ci","codspeed","performance"],"namespace":"CodSpeedHQ","versions_count":68,"first_release_published_at":"2022-11-05T00:18:07.000Z","latest_release_published_at":"2026-02-06T17:15:27.000Z","latest_release_number":"v4.10.5","last_synced_at":"2026-04-12T00:02:17.986Z","created_at":"2025-06-07T21:17:07.837Z","updated_at":"2026-04-12T00:02:17.987Z","registry_url":"https://github.com/CodSpeedHQ/action","install_command":null,"documentation_url":null,"metadata":{"name":"CodSpeed Performance Analysis","description":"Continuous benchmarking and performance checks","branding":{"color":"orange","icon":"activity"},"author":"Arthur Pastel","inputs":{"run":{"description":"The command to run the benchmarks","required":false},"mode":{"description":"The mode to run the benchmarks in. The following modes are available:\n- `simulation`: Run the benchmarks with CPU simulation measurements.\n- `walltime`: Run the benchmarks with walltime measurement.\n- `memory`: Run the benchmarks with allocation measurements.\n- `instrumentation`: (Deprecated) Legacy name for `simulation`. Please use `simulation` instead.\n\nWe strongly recommend starting with the `simulation` mode.\n\nUsing the `walltime` mode on traditional VMs/Hosted Runners might lead to inconsistent data. For the best results, we recommend using CodSpeed Hosted Macro Runners, which are fine-tuned for performance measurement consistency.\nCheck out the [Walltime Instrument Documentation](https://docs.codspeed.io/instruments/walltime/) for more details.\n","required":true},"token":{"description":"CodSpeed upload token. Only required for private repositories.\n","required":false},"working-directory":{"description":"The directory where the `run` command will be executed.\nWarning: if you use defaults.working-directory, you must still set this parameter.\n","required":false},"upload-url":{"description":"The upload endpoint (for on-premise deployments)","required":false},"runner-version":{"description":"The version of the runner to use. Use 'latest' to automatically fetch the latest release version from GitHub, or specify a version like '3.5.0' or 'v3.5.0'.","required":false},"instruments":{"description":"Comma separated list of instruments to enable. The following instruments are available:\n- `mongodb`: MongoDB instrumentation, requires the MongoDB instrument to be enabled for the organization in CodSpeed\n","required":false},"mongo-uri-env-name":{"description":"The name of the environment variable containing the MongoDB URI. Requires the `mongodb` instrument to be activated in `instruments`.\nIf the instrumentation is enabled and this value is not set, the user will need to dynamically provide the MongoDB URI to the CodSpeed runner.\n","required":false},"cache-instruments":{"description":"Enable caching of instrument installations (like valgrind or perf) to speed up subsequent workflow runs. Set to 'false' to disable caching.\n","required":false,"default":"true"},"instruments-cache-dir":{"description":"The directory to use for caching installations of instruments (like valgrind or perf). Defaults to `$HOME/.cache/codspeed-action`.\n","required":false,"default":"~/.cache/codspeed-action"},"allow-empty":{"description":"Allow the action to complete successfully even if no benchmarks were found or run. Set to 'true' to enable this behavior.\n","required":false,"default":"false"},"go-runner-version":{"description":"The version of the go-runner to use (e.g., 1.0.0, 1.0.0-beta.1). If not specified, the latest version will be installed","required":false},"config":{"description":"Path to a CodSpeed configuration file (codspeed.yml). If not specified, the runner will look for a codspeed.yml file in the repository root.","required":false}},"runs":{"using":"composite","steps":[{"name":"Determine runner and kernel version","id":"versions","shell":"bash","run":"RUNNER_VERSION=\"${{ inputs.runner-version }}\"\nif [ -z \"$RUNNER_VERSION\" ]; then\n  RUNNER_VERSION=$(cat $GITHUB_ACTION_PATH/.codspeed-runner-version)\nfi\necho \"runner-version=$RUNNER_VERSION\" \u003e\u003e $GITHUB_OUTPUT\n\n# Get kernel version for cache key\nKERNEL_VERSION=$(uname -r)\necho \"kernel-version=$KERNEL_VERSION\" \u003e\u003e $GITHUB_OUTPUT\n"},{"name":"Cache CodSpeed instruments","if":"inputs.cache-instruments == 'true'","uses":"actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830","with":{"path":"${{ inputs.instruments-cache-dir }}","key":"codspeed-instruments-${{ inputs.mode }}-${{ runner.os }}-${{ runner.arch }}-${{steps.versions.outputs.kernel-version }}-${{ steps.versions.outputs.runner-version }}","restore-keys":"codspeed-instruments-${{ inputs.mode }}-${{ runner.os }}-${{ runner.arch }}-${{steps.versions.outputs.kernel-version }}-\n"}},{"shell":"bash","env":{"GH_MATRIX":"${{ toJson(matrix) }}","GH_STRATEGY":"${{ toJson(strategy) }}","CODSPEED_INPUT_RUN":"${{ inputs.run }}"},"run":"# Validate required inputs\n# (custom message for smoother v4 migration)\nif [ -z \"${{ inputs.mode }}\" ]; then\n  echo \"::error title=Missing required input 'mode'::The 'mode' input is required as of CodSpeed Action v4. Please explicitly set 'mode' to 'simulation' or 'walltime'. Before, this variable was automatically set to instrumentation on every runner except for CodSpeed macro runners where it was set to walltime by default. See https://codspeed.io/docs/instruments for details.\"\n  exit 1\nfi\n\n# Configure and run codspeed-runner\nRUNNER_VERSION=\"${{ steps.versions.outputs.runner-version }}\"\n\n# Detect version type (priority: latest \u003e version number \u003e branch/rev prefixes)\nif [ \"$RUNNER_VERSION\" = \"latest\" ]; then\n  VERSION_TYPE=\"latest\"\nelif echo \"$RUNNER_VERSION\" | grep -qE '^v?[0-9]+\\.[0-9]+\\.[0-9]+'; then\n  # Version number (with or without 'v' prefix)\n  VERSION_TYPE=\"release\"\n  # Strip 'v' prefix if present to normalize version format\n  RUNNER_VERSION=$(echo \"$RUNNER_VERSION\" | sed 's/^v//')\nelif echo \"$RUNNER_VERSION\" | grep -q '^branch:'; then\n  VERSION_TYPE=\"branch\"\n  RUNNER_VERSION=$(echo \"$RUNNER_VERSION\" | sed 's/^branch://')\nelif echo \"$RUNNER_VERSION\" | grep -q '^rev:'; then\n  VERSION_TYPE=\"rev\"\n  RUNNER_VERSION=$(echo \"$RUNNER_VERSION\" | sed 's/^rev://')\nelse\n  # Default to release version\n  VERSION_TYPE=\"release\"\n  RUNNER_VERSION=$(echo \"$RUNNER_VERSION\" | sed 's/^v//')\nfi\n\n# Install the runner\nif [ \"$VERSION_TYPE\" = \"latest\" ]; then\n  curl -fsSL http://github.com/CodSpeedHQ/codspeed/releases/latest/download/codspeed-runner-installer.sh | bash -s -- --quiet\nelif [ \"$VERSION_TYPE\" = \"branch\" ]; then\n  # Install from specific branch using cargo\n  source $HOME/.cargo/env\n  cargo install --locked --git https://github.com/CodSpeedHQ/codspeed --branch \"$RUNNER_VERSION\" codspeed-runner\nelif [ \"$VERSION_TYPE\" = \"rev\" ]; then\n  # Install from specific commit/rev using cargo\n  source $HOME/.cargo/env\n  cargo install --locked --git https://github.com/CodSpeedHQ/codspeed --rev \"$RUNNER_VERSION\" codspeed-runner\nelse\n  # Release version\n  head_status=$(curl -I -fsSL -w \"%{http_code}\" -o /dev/null https://github.com/CodSpeedHQ/codspeed/releases/download/v$RUNNER_VERSION/codspeed-runner-installer.sh)\n  if [ \"$head_status\" -eq 404 ]; then\n    echo \"Error: Version $RUNNER_VERSION is not available in https://github.com/CodSpeedHQ/codspeed/releases, please a correct version.\"\n    exit 1\n  else\n    curl -fsSL https://github.com/CodSpeedHQ/codspeed/releases/download/v$RUNNER_VERSION/codspeed-runner-installer.sh | bash -s -- --quiet\n  fi\nfi\n\n# Build the runner arguments array\nRUNNER_ARGS=()\nif [ -n \"${{ inputs.token }}\" ]; then\n  RUNNER_ARGS+=(--token \"${{ inputs.token }}\")\nfi\nif [ -n \"${{ inputs.working-directory }}\" ]; then\n  RUNNER_ARGS+=(--working-directory=\"${{ inputs.working-directory }}\")\nfi\nif [ -n \"${{ inputs.upload-url }}\" ]; then\n  RUNNER_ARGS+=(--upload-url=\"${{ inputs.upload-url }}\")\nfi\nif [ -n \"${{ inputs.mode }}\" ]; then\n  RUNNER_ARGS+=(--mode=\"${{ inputs.mode }}\")\nfi\nif [ -n \"${{ inputs.instruments }}\" ]; then\n  RUNNER_ARGS+=(--instruments=\"${{ inputs.instruments }}\")\nfi\nif [ -n \"${{ inputs.mongo-uri-env-name }}\" ]; then\n  RUNNER_ARGS+=(--mongo-uri-env-name=\"${{ inputs.mongo-uri-env-name }}\")\nfi\nif [ \"${{ inputs.cache-instruments }}\" = \"true\" ] \u0026\u0026 [ -n \"${{ inputs.instruments-cache-dir }}\" ]; then\n  RUNNER_ARGS+=(--setup-cache-dir=\"${{ inputs.instruments-cache-dir }}\")\nfi\nif [ \"${{ inputs.allow-empty }}\" = \"true\" ]; then\n  RUNNER_ARGS+=(--allow-empty)\nfi\nif [ -n \"${{ inputs.go-runner-version }}\" ]; then\n  RUNNER_ARGS+=(--go-runner-version=\"${{ inputs.go-runner-version }}\")\nfi\nif [ -n \"${{ inputs.config }}\" ]; then\n  RUNNER_ARGS+=(--config=\"${{ inputs.config }}\")\nfi\n\nif [ -n \"$CODSPEED_INPUT_RUN\" ]; then\n  RUNNER_ARGS+=(-- \"$CODSPEED_INPUT_RUN\")\nfi\n\n# Run the benchmarks\ncodspeed run \"${RUNNER_ARGS[@]}\"\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":62750416,"uuid":"561699778","full_name":"CodSpeedHQ/action","owner":"CodSpeedHQ","description":"Github Actions for running CodSpeed in your CI ","archived":false,"fork":false,"pushed_at":"2025-10-15T08:38:57.000Z","size":770,"stargazers_count":44,"open_issues_count":9,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-15T23:25:07.063Z","etag":null,"topics":["benchmarking","ci","codspeed","performance"],"latest_commit_sha":null,"homepage":"https://codspeed.io","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodSpeedHQ.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-04T09:37:52.000Z","updated_at":"2025-10-14T22:40:14.000Z","dependencies_parsed_at":"2023-02-17T01:30:57.949Z","dependency_job_id":"a115fd8d-2022-453a-9ca4-facb5af26fa2","html_url":"https://github.com/CodSpeedHQ/action","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/CodSpeedHQ/action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodSpeedHQ","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/sbom","scorecard":{"id":31174,"data":{"date":"2025-08-11","repo":{"name":"github.com/CodSpeedHQ/action","commit":"74eaaf1129580c3a7c50e3a799c367fdfdafc486"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.8,"checks":[{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":9,"reason":"10 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 9","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":1,"reason":"Found 3/18 approved changesets -- score normalized to 1","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: topLevel 'contents' permission set to 'write': .github/workflows/bump-runner-version.yml:11","Warn: no topLevel permission defined: .github/workflows/ci.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/bump-runner-version.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/CodSpeedHQ/action/bump-runner-version.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/CodSpeedHQ/action/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:72: update your workflow using https://app.stepsecurity.io/secureworkflow/CodSpeedHQ/action/ci.yml/main?enable=pin","Info:   0 out of   3 GitHub-owned GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":5,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Warn: 'branch protection settings apply to administrators' is disabled on branch 'main'","Warn: 'stale review dismissal' is disabled on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Warn: codeowners review is not required on branch 'main'","Warn: 'last push approval' is disabled on branch 'main'","Warn: no status checks found to merge onto branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 15 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-14T19:09:02.202Z","repository_id":62750416,"created_at":"2025-08-14T19:09:02.202Z","updated_at":"2025-08-14T19:09:02.202Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279251076,"owners_count":26134297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"CodSpeedHQ","name":"CodSpeed - Unmatched Performance Testing","uuid":"116658140","kind":"organization","description":"CodSpeed provides integrated CI tools for software engineering teams to anticipate the impacts of the next delivery on system performance.","email":"contact@codspeed.io","website":"https://codspeed.io","location":"United States of America","twitter":"codspeedhq","company":null,"icon_url":"https://avatars.githubusercontent.com/u/116658140?v=4","repositories_count":18,"last_synced_at":"2024-04-19T18:59:33.556Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/CodSpeedHQ","funding_links":[],"total_stars":71,"followers":24,"following":0,"created_at":"2023-03-03T14:28:16.340Z","updated_at":"2024-04-19T18:59:36.739Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodSpeedHQ","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodSpeedHQ/repositories"},"tags":[{"name":"v4.2.0","sha":"7a5b8b0a6a5d150b9b775abc1dd3c5e8b00da675","kind":"tag","published_at":"2025-10-16T15:48:58.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4.2.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4.2.0","dependencies_parsed_at":null,"dependency_job_id":"20292de5-65fd-4dfe-9a71-6897c9925a3d","purl":"pkg:github/CodSpeedHQ/action@v4.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.2.0/manifests"},{"name":"v4.1.1","sha":"6b43a0cd438f6ca5ad26f9ed03ed159ed2df7da9","kind":"tag","published_at":"2025-10-06T11:44:50.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4.1.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4.1.1","dependencies_parsed_at":"2025-10-15T11:45:47.881Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v4.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.1.1/manifests"},{"name":"v4.1.0","sha":"3959e9e296ef25296e93e32afcc97196f966e57f","kind":"tag","published_at":"2025-10-02T09:12:25.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4.1.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4.1.0","dependencies_parsed_at":"2025-10-15T11:45:47.885Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v4.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.1.0/manifests"},{"name":"v4.0.1","sha":"653fdc30e6c40ffd9739e40c8a0576f4f4523ca1","kind":"tag","published_at":"2025-09-09T13:51:48.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4.0.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4.0.1","dependencies_parsed_at":"2025-09-13T04:58:30.234Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v4.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.0.1/manifests"},{"name":"v4","sha":"6eeb021fd0f305388292348b775d96d95253adf4","kind":"tag","published_at":"2025-09-02T09:15:30.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4","dependencies_parsed_at":null,"dependency_job_id":"32881931-f1a2-44d8-be1e-570acdb75651","purl":"pkg:github/CodSpeedHQ/action@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4/manifests"},{"name":"v4.0.0","sha":"6eeb021fd0f305388292348b775d96d95253adf4","kind":"tag","published_at":"2025-09-02T09:15:30.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v4.0.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v4.0.0","dependencies_parsed_at":null,"dependency_job_id":"699548ec-2f92-4171-ba79-f735f94e2fb9","purl":"pkg:github/CodSpeedHQ/action@v4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v4.0.0/manifests"},{"name":"v3.8.1","sha":"76578c2a7ddd928664caa737f0e962e3085d4e7c","kind":"tag","published_at":"2025-08-25T16:35:17.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.8.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.8.1","dependencies_parsed_at":"2025-08-27T04:58:44.426Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.8.1/manifests"},{"name":"v3.8.0","sha":"0b6e7a3d96c9d2a6057e7bcea6b45aaf2f7ce60b","kind":"tag","published_at":"2025-07-22T09:14:10.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.8.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.8.0","dependencies_parsed_at":"2025-07-29T09:30:13.751Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.8.0/manifests"},{"name":"v3.7.0","sha":"c28fe9fbe7d57a3da1b7834ae3761c1d8217612d","kind":"tag","published_at":"2025-07-08T15:04:50.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.7.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.7.0","dependencies_parsed_at":"2025-07-13T07:36:10.284Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.7.0/manifests"},{"name":"v3.6.1","sha":"ad71f92d9429aabfcf70738be9defdbbfc7b75e2","kind":"tag","published_at":"2025-07-07T15:07:24.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.6.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.6.1","dependencies_parsed_at":"2025-07-11T06:20:32.329Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.6.1/manifests"},{"name":"v3.5.0","sha":"0010eb0ca6e89b80c88e8edaaa07cfe5f3e6664d","kind":"tag","published_at":"2025-03-13T14:45:46.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.5.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.5.0","dependencies_parsed_at":"2025-06-09T04:21:44.048Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.5.0/manifests"},{"name":"v3.4.0","sha":"63ae6025a0ffee97d7736a37c9192dbd6ed4e75f","kind":"tag","published_at":"2025-02-19T10:48:13.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.4.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.4.0","dependencies_parsed_at":"2025-06-09T04:21:42.969Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.4.0/manifests"},{"name":"v3.3.1","sha":"1015f4f828ff74b7a950909897fe581d6ba868cc","kind":"tag","published_at":"2025-02-13T16:59:52.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.3.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.3.1","dependencies_parsed_at":"2025-06-09T04:21:43.269Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.3.1/manifests"},{"name":"v3.3.0","sha":"da7c57859a7a565a3a92789ac64c41aca031ca1f","kind":"tag","published_at":"2025-02-12T15:34:44.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.3.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.3.0","dependencies_parsed_at":"2025-06-09T04:21:43.018Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.3.0/manifests"},{"name":"v3.2.0","sha":"513a19673a831f139e8717bf45ead67e47f00044","kind":"tag","published_at":"2024-11-26T11:09:41.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.2.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.2.0","dependencies_parsed_at":"2025-06-09T04:21:43.642Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.2.0/manifests"},{"name":"v3.1.0","sha":"fa1dcde8d58f2ab0b407a6a24d6cc5a8c1444a8c","kind":"tag","published_at":"2024-11-05T16:17:28.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.1.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.1.0","dependencies_parsed_at":"2025-06-09T04:21:43.495Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.1.0/manifests"},{"name":"v3","sha":"fa1dcde8d58f2ab0b407a6a24d6cc5a8c1444a8c","kind":"tag","published_at":"2024-11-05T16:17:28.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3","dependencies_parsed_at":"2025-06-09T04:21:44.466Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3/manifests"},{"name":"v3.0.1","sha":"b587655f756aab640e742fec141261bc6f0a569d","kind":"tag","published_at":"2024-10-14T07:59:32.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.0.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.0.1","dependencies_parsed_at":"2025-06-09T04:21:43.691Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.0.1/manifests"},{"name":"v2.4.5","sha":"9481de2550a3d73cdac24ddd54ee6b9ee31f7ec2","kind":"tag","published_at":"2024-09-04T11:04:44.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.5","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.5","dependencies_parsed_at":"2025-06-09T04:21:42.539Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.5/manifests"},{"name":"v3.0.0","sha":"ab07afd34cbbb7a1306e8d14b7cc44e029eee37a","kind":"tag","published_at":"2024-07-26T13:50:20.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v3.0.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v3.0.0","dependencies_parsed_at":"2025-06-09T04:21:43.554Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v3.0.0/manifests"},{"name":"v2.4.4","sha":"ce4674c9a7e4628edd2df5a3c8e4fbacc451a21c","kind":"tag","published_at":"2024-07-26T13:46:54.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.4","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.4","dependencies_parsed_at":"2025-06-09T04:21:43.332Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.4/manifests"},{"name":"v2.4.3","sha":"a58b84c0b61569a9cbb7cfb378cc849d65cf1ce5","kind":"tag","published_at":"2024-07-12T10:02:38.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.3","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.3","dependencies_parsed_at":"2025-06-09T04:21:43.489Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.3/manifests"},{"name":"v2.4.2","sha":"f11c406b8c87cda176ff341ed4925bc98086f6d1","kind":"tag","published_at":"2024-06-15T00:10:59.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.2","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.2","dependencies_parsed_at":"2025-06-09T04:21:43.020Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.2/manifests"},{"name":"v2.4.1","sha":"0b631f8998f2389eb5144632b6f9f8fabd33a86e","kind":"tag","published_at":"2024-04-29T16:47:39.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.1","dependencies_parsed_at":"2025-06-09T04:21:43.468Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.1/manifests"},{"name":"v2.4.0","sha":"ac302de34d7033a41328af8feef9994251c7bd1e","kind":"tag","published_at":"2024-04-26T18:36:34.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.4.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.4.0","dependencies_parsed_at":"2025-06-09T04:21:42.204Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.4.0/manifests"},{"name":"v2.3.1","sha":"aa9939428da62f095e83438509c41499e7a2d751","kind":"tag","published_at":"2024-04-24T15:59:29.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.3.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.3.1","dependencies_parsed_at":"2025-06-09T04:21:44.497Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.3.1/manifests"},{"name":"v2.3.0","sha":"1dbf41f0ae41cebfe61e084e535aebe533409b4d","kind":"tag","published_at":"2024-03-22T01:38:10.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.3.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.3.0","dependencies_parsed_at":"2025-06-09T04:21:42.049Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.3.0/manifests"},{"name":"v2.2.1","sha":"2e04019f4572c19684929a755da499f19a00b25b","kind":"tag","published_at":"2024-02-22T18:42:30.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.2.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.2.1","dependencies_parsed_at":"2025-06-09T04:21:42.615Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.2.1/manifests"},{"name":"v2.2.0","sha":"8fd5bb7fdd76cbeb81845c3289e5e4eea9f08979","kind":"tag","published_at":"2024-02-22T11:17:59.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.2.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.2.0","dependencies_parsed_at":"2025-06-09T04:21:41.840Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.2.0/manifests"},{"name":"v2.1.1","sha":"fce3a2f16d0b352af341dcacb25caadfd9159055","kind":"tag","published_at":"2024-02-02T16:02:26.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.1.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.1.1","dependencies_parsed_at":"2025-06-09T04:21:42.935Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.1.1/manifests"},{"name":"v2.0.3","sha":"5ef3186765fa3fafd8b2729b064025d19626050c","kind":"tag","published_at":"2024-01-04T10:11:03.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.0.3","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.0.3","dependencies_parsed_at":"2025-06-09T04:21:42.256Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.3/manifests"},{"name":"v2.0.2","sha":"ad0378e48c3cb4c700f1cdc5e10943dbad3cc4ec","kind":"tag","published_at":"2023-12-04T15:08:29.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.0.2","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.0.2","dependencies_parsed_at":"2025-06-09T04:21:43.483Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"3cb272459e1691ee9a28a6628ab6c5cbf4219399","kind":"tag","published_at":"2023-12-01T15:21:26.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.0.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.0.1","dependencies_parsed_at":"2025-06-09T04:21:43.465Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.1/manifests"},{"name":"v2","sha":"3cb272459e1691ee9a28a6628ab6c5cbf4219399","kind":"tag","published_at":"2023-12-01T15:21:26.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2","dependencies_parsed_at":"2025-06-09T04:21:43.418Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2/manifests"},{"name":"v2.0.0","sha":"4f1d7b4ec1478d38adad51b6ef3be817585564e6","kind":"tag","published_at":"2023-12-01T10:58:54.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v2.0.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v2.0.0","dependencies_parsed_at":"2025-06-09T04:21:41.978Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v2.0.0/manifests"},{"name":"v1.8.1","sha":"cb13748eed9a8ccb27855efb02a74a09a56332e5","kind":"tag","published_at":"2023-09-13T20:32:06.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.8.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.8.1","dependencies_parsed_at":"2025-06-09T04:21:57.172Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.8.1/manifests"},{"name":"v1.8.0","sha":"bb6ff214759e0e85773b5562da0fa968e5e52989","kind":"tag","published_at":"2023-07-20T17:16:44.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.8.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.8.0","dependencies_parsed_at":"2025-06-09T04:21:57.168Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.8.0/manifests"},{"name":"v1.7.1","sha":"8c964c641b45af5c2956ba3a91cb78663171c03f","kind":"commit","published_at":"2023-07-07T16:16:53.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.7.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.7.1","dependencies_parsed_at":"2025-06-09T04:21:57.173Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.7.1/manifests"},{"name":"v1.7.0","sha":"00466cb1913ad7e12694280473a16fcf1c1863ba","kind":"tag","published_at":"2023-07-05T16:52:02.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.7.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.7.0","dependencies_parsed_at":"2025-06-09T04:21:57.178Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.7.0/manifests"},{"name":"v1.6.0","sha":"4cb151de0c852c38201e37b3ed77299b3e27b35f","kind":"tag","published_at":"2023-04-12T15:33:19.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.6.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.6.0","dependencies_parsed_at":"2025-06-09T04:21:42.690Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.6.0/manifests"},{"name":"v1.5.0","sha":"17c9f2c732106691874eaa8b6f8a7aabedba7ff4","kind":"tag","published_at":"2023-03-20T17:28:32.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.5.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.5.0","dependencies_parsed_at":"2025-06-09T04:21:42.246Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.5.0/manifests"},{"name":"v1.4.0","sha":"f4e5f4cf3f4a63c91c9d6c198eec9dd603b8040c","kind":"tag","published_at":"2023-01-11T12:48:52.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.4.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.4.0","dependencies_parsed_at":"2025-06-09T04:21:43.681Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"f1a5f0ab3ff3ca1f534fba41100a0f7ed0eb7cd1","kind":"tag","published_at":"2022-12-02T16:21:04.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.3.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.3.0","dependencies_parsed_at":"2025-06-09T04:21:44.146Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.3.0/manifests"},{"name":"v1.2.0","sha":"25a7b69642eb86ff9a709a7c905a01a1981c52d3","kind":"tag","published_at":"2022-11-21T15:48:23.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.2.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.2.0","dependencies_parsed_at":"2025-06-09T04:21:43.766Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.2.0/manifests"},{"name":"v1.1.2","sha":"cbdf2532e85bb9b5d9ed46c08f0630125ed036fe","kind":"tag","published_at":"2022-11-14T14:32:58.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.1.2","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.1.2","dependencies_parsed_at":"2025-06-09T04:21:44.130Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"168d97100284d0969bd4a5e22a7087b7126de349","kind":"tag","published_at":"2022-11-10T19:17:54.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.1.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.1.1","dependencies_parsed_at":"2025-06-09T04:21:43.316Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"adf568e679b7e349a5bea44b599e6eff0c39947e","kind":"tag","published_at":"2022-11-10T09:30:55.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.1.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.1.0","dependencies_parsed_at":"2025-06-09T04:21:43.512Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.1.0/manifests"},{"name":"v1","sha":"804d498754f1fbdde8153621c99a1cefeabea715","kind":"tag","published_at":"2022-11-05T17:56:01.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1","dependencies_parsed_at":"2025-06-09T04:21:57.192Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1/manifests"},{"name":"v1.0.2","sha":"804d498754f1fbdde8153621c99a1cefeabea715","kind":"tag","published_at":"2022-11-05T17:56:01.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.0.2","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.0.2","dependencies_parsed_at":"2025-06-09T04:21:43.886Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"198085d09e017c61c3cec8d95179e7c34f2a1726","kind":"tag","published_at":"2022-11-05T16:29:43.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.0.1","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.0.1","dependencies_parsed_at":"2025-06-09T04:21:43.522Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"1321a89d29560424a83a168850de41be12141f25","kind":"tag","published_at":"2022-11-05T00:18:07.000Z","download_url":"https://codeload.github.com/CodSpeedHQ/action/tar.gz/v1.0.0","html_url":"https://github.com/CodSpeedHQ/action/releases/tag/v1.0.0","dependencies_parsed_at":"2025-06-09T04:21:43.629Z","dependency_job_id":null,"purl":"pkg:github/CodSpeedHQ/action@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodSpeedHQ%2Faction/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2026-02-11T14:23:32.248Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":34.34343434343434,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":17.17171717171717},"purl":"pkg:githubactions/CodSpeedHQ/action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/CodSpeedHQ/action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/CodSpeedHQ/action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/CodSpeedHQ/action/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-10-17T17:06:55.243Z","issues_count":16,"pull_requests_count":118,"avg_time_to_close_issue":2623816.375,"avg_time_to_close_pull_request":2334317.663716814,"issues_closed_count":8,"pull_requests_closed_count":113,"pull_request_authors_count":7,"issue_authors_count":12,"avg_comments_per_issue":2.25,"avg_comments_per_pull_request":0.5338983050847458,"merged_pull_requests_count":49,"bot_issues_count":0,"bot_pull_requests_count":78,"past_year_issues_count":3,"past_year_pull_requests_count":15,"past_year_avg_time_to_close_issue":31804.0,"past_year_avg_time_to_close_pull_request":376084.76923076925,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":13,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":0.6666666666666666,"past_year_avg_comments_per_pull_request":0.06666666666666667,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":12,"past_year_merged_pull_requests_count":11,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/codspeedhq%2Faction/issues","maintainers":[{"login":"art049","count":23,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/art049"},{"login":"adriencaccia","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/adriencaccia"},{"login":"fargito","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/fargito"}],"active_maintainers":[{"login":"fargito","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/fargito"},{"login":"adriencaccia","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/adriencaccia"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/CodSpeedHQ%2Faction/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/CodSpeedHQ%2Faction/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/CodSpeedHQ%2Faction/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/CodSpeedHQ%2Faction/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/CodSpeedHQ%2Faction/codemeta","maintainers":[]}