{"id":6325894,"name":"codacy/codacy-analysis-cli-action","ecosystem":"actions","description":"Execute Codacy code analysis using your remote Codacy configuration","homepage":"https://github.com/codacy/codacy-analysis-cli","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/codacy/codacy-analysis-cli-action","keywords_array":["automation","github-actions","static-analysis"],"namespace":"codacy","versions_count":27,"first_release_published_at":"2019-10-27T17:01:54.000Z","latest_release_published_at":"2024-07-12T13:51:35.000Z","latest_release_number":"v4.4.5","last_synced_at":"2026-03-31T14:02:21.010Z","created_at":"2023-02-13T12:55:37.953Z","updated_at":"2026-03-31T14:02:21.010Z","registry_url":"https://github.com/codacy/codacy-analysis-cli-action","install_command":null,"documentation_url":null,"metadata":{"name":"Codacy Analysis CLI","author":"Codacy","description":"Execute Codacy code analysis using your remote Codacy configuration","branding":{"icon":"check","color":"gray-dark"},"inputs":{"verbose":{"required":false,"description":"Run with verbose output"},"project-token":{"required":false,"description":"API project token to retrieve your remote Codacy configuration for the project being analyzed"},"api-token":{"required":false,"description":"API account token to retrieve your remote Codacy configuration for the project being analyzed"},"codacy-api-base-url":{"required":false,"description":"Codacy API URL to retrieve your remote Codacy configuration"},"format":{"required":false,"description":"Output file format"},"output":{"required":false,"description":"Path to a file to save the analysis results"},"directory":{"required":false,"description":"Directory to analyze"},"parallel":{"required":false,"description":"Number of tools to run in parallel"},"max-tool-memory":{"required":false,"description":"Maximum allowed memory for running each tool (bytes)"},"max-allowed-issues":{"required":false,"default":"2147483647","description":"Maximum number of issues allowed for the analysis to succeed"},"registry-address":{"required":false,"default":"","description":"Alternative registry address (e.g. artprod.mycompany/)"},"tool":{"required":false,"description":"Only run a specific tool or tool category (metrics, issues, duplication). For the full list of tools, see https://docs.codacy.com/repositories-configure/codacy-configuration-file/#which-tools-can-be-configured-and-which-name-should-i-use"},"tool-timeout":{"required":false,"description":"Tool execution timeout (e.g. 15minutes, 1hour)"},"upload":{"required":false,"description":"Upload analysis results to Codacy"},"upload-batch-size":{"required":false,"description":"Maximum number of results in each batch to upload to Codacy"},"fail-if-incomplete":{"required":false,"description":"Fail the analysis if any tool fails to run"},"allow-network":{"required":false,"description":"Allow the tools to access the network"},"force-file-permissions":{"required":false,"description":"Force files to be readable by changing the permissions before running the analysis"},"gh-code-scanning-compat":{"required":false,"description":"Reduce issue severity by one level for non-security issues, for compatibility with GitHub's code scanning feature. This option only has an effect when used with 'format: sarif'."},"run-docker-tools":{"required":false,"default":"true","description":"Run all dockerized tools supported by Codacy. For the full list of tools, see https://docs.codacy.com/repositories-configure/codacy-configuration-file/#which-tools-can-be-configured-and-which-name-should-i-use"},"run-gosec":{"required":false,"description":"Run Gosec"},"run-staticcheck":{"required":false,"description":"Run Staticcheck"},"clang-tidy-output":{"required":false,"description":"Path to a file containing the output of Clang-Tidy."},"faux-pas-output":{"required":false,"description":"Path to a file containing the output of Faux Pas."},"skip-uncommitted-files-check":{"required":false,"description":"Skip validation of uncommitted changes"},"skip-container-engine-check":{"required":false,"description":"Skip check for the presence of a known container engine before executing"}},"runs":{"using":"composite","steps":[{"name":"Set Global Variables","shell":"bash","run":"echo \"CODACY_BASE_URL_OR_DEFAULT=$(if [ -n \"${{ inputs.codacy-api-base-url }}\" ]; then echo \"${{ inputs.codacy-api-base-url }}\"; else echo \"https://api.codacy.com\"; fi)\" \u003e\u003e \"$GITHUB_ENV\"\necho \"OWNER_NAME=$(echo \"$GITHUB_REPOSITORY\" | cut -d '/' -f 1)\" \u003e\u003e \"$GITHUB_ENV\"\necho \"REPOSITORY_NAME=$(echo \"$GITHUB_REPOSITORY\" | cut -d '/' -f 2)\" \u003e\u003e \"$GITHUB_ENV\"\necho \"ORGANIZATION_PROVIDER=$(if [ \"$GITHUB_SERVER_URL\" == \"https://github.com\" ]; then echo \"gh\"; else echo \"ghe\"; fi)\" \u003e\u003e \"$GITHUB_ENV\"\necho \"COMMIT_SHA=$(if [ \"${{ github.event_name }}\" == \"pull_request\" ]; then echo \"${{ github.event.pull_request.head.sha }}\"; else echo \"${{ github.sha }}\"; fi)\" \u003e\u003e \"$GITHUB_ENV\"\nif [ -n \"${{ inputs.skip-container-engine-check }}\" ]; then\n  echo \"SKIP_CONTAINER_ENGINE_CHECK=${{ inputs.skip-container-engine-check }}\" \u003e\u003e \"$GITHUB_ENV\"\nfi\n"},{"name":"Prepare curl authentication header","shell":"bash","run":"if [ -n \"${{ inputs.api-token }}\" ]; then\n  echo \"CURL_CODACY_AUTH_AUTHENTICATION=api-token: ${{ inputs.api-token }}\" \u003e\u003e $GITHUB_ENV\nelif [ -n \"${{ inputs.project-token }}\" ]; then\n  echo \"CURL_CODACY_AUTH_AUTHENTICATION=project-token: ${{ inputs.project-token }}\" \u003e\u003e $GITHUB_ENV\nelif [ \"${{ inputs.upload }}\" == \"true\" ]; then\n  echo \"At least one authentication method is required to upload results.\"\n  exit 1\nfi\n"},{"name":"Run GoSec","shell":"bash","run":"set -eux\n\nif [ \"${{ inputs.run-gosec }}\" == \"true\" ]; then\n  cd /tmp\n  curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s v2.15.0\n  chmod +x ./bin/gosec\n  CODACY_GOSEC_VERSION=$(curl -SL \"https://artifacts.codacy.com/bin/codacy-gosec/latest\" -o-)\n  curl -fsSL \"https://artifacts.codacy.com/bin/codacy-gosec/$CODACY_GOSEC_VERSION/codacy-gosec-$CODACY_GOSEC_VERSION\" -o /tmp/codacy-gosec\n  chmod +x /tmp/codacy-gosec\n  cd -\n\n  /tmp/bin/gosec -no-fail -fmt json -log /tmp/log.txt ./... \u003e /tmp/gosec-out.json\n  /tmp/codacy-gosec \u003c /tmp/gosec-out.json \u003e /tmp/codacy-out.json\n  if [ \"${{ inputs.upload }}\" == \"true\" ]; then\n    curl -XPOST -L -H \"$CURL_CODACY_AUTH_AUTHENTICATION\" \\\n      -H \"Content-type: application/json\" --data-binary @/tmp/codacy-out.json \\\n      \"${CODACY_BASE_URL_OR_DEFAULT}/2.0/$ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME/commit/$COMMIT_SHA/issuesRemoteResults\"\n  else\n    cat /tmp/codacy-out.json\n  fi\nelse\n  echo \"Skipping GoSec\"\nfi\n"},{"name":"set-up go","if":"${{ inputs.run-staticcheck == 'true' }}","uses":"actions/setup-go@v3","with":{"go-version":"1.20.2"}},{"name":"Run StaticCheck","shell":"bash","run":"set -eux\n\nif [ \"${{ inputs.run-staticcheck }}\" == \"true\" ]; then\n  cd /tmp\n  go install honnef.co/go/tools/cmd/staticcheck@2023.1.6      \n  chmod +x /home/runner/go/bin/staticcheck\n  CODACY_STATICCHECK_VERSION=$(curl -SL \"https://artifacts.codacy.com/bin/codacy-staticcheck/latest\" -o-)\n  curl -fsSL \"https://artifacts.codacy.com/bin/codacy-staticcheck/$CODACY_STATICCHECK_VERSION/codacy-staticcheck-$CODACY_STATICCHECK_VERSION\" -o /tmp/codacy-staticcheck\n  chmod +x /tmp/codacy-staticcheck\n  cd -\n\n  find . -type f -name go.mod -exec bash -c 'cd $(dirname $1); cp $1 $1.codacy.bak; PKGS=$(go list ./...); /home/runner/go/bin/staticcheck -f json $PKGS; mv $1.codacy.bak $1' _ {} \\; \u003e /tmp/staticcheck-out.json\n  /tmp/codacy-staticcheck \u003c /tmp/staticcheck-out.json \u003e /tmp/codacy-out.json\n  if [ \"${{ inputs.upload }}\" == \"true\" ]; then\n    curl -XPOST -L -H \"$CURL_CODACY_AUTH_AUTHENTICATION\" \\\n      -H \"Content-type: application/json\" --data-binary @/tmp/codacy-out.json \\\n      \"${CODACY_BASE_URL_OR_DEFAULT}/2.0/$ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME/commit/$COMMIT_SHA/issuesRemoteResults\"\n  else\n    cat /tmp/codacy-out.json\n  fi\nelse\n  echo \"Skipping StaticCheck\"\nfi\n"},{"name":"Parse and Push Clang Tidy results","shell":"bash","run":"set -eux\n\nif [ -n \"${{ inputs.clang-tidy-output }}\" ]; then\n  cd /tmp\n  CODACY_CLANG_TIDY_VERSION=$(curl -SL \"https://artifacts.codacy.com/bin/codacy-clang-tidy/latest\" -o-)\n  curl -fsSL \"https://artifacts.codacy.com/bin/codacy-clang-tidy/$CODACY_CLANG_TIDY_VERSION/codacy-clang-tidy-linux-$CODACY_CLANG_TIDY_VERSION\" -o /tmp/codacy-clang-tidy\n  chmod +x /tmp/codacy-clang-tidy\n  cd -\n\n  /tmp/codacy-clang-tidy \u003c \"${{ inputs.clang-tidy-output }}\" \u003e /tmp/codacy-out.json\n  if [ \"${{ inputs.upload }}\" == \"true\" ]; then\n    curl -XPOST -L -H \"$CURL_CODACY_AUTH_AUTHENTICATION\" \\\n      -H \"Content-type: application/json\" --data-binary @/tmp/codacy-out.json \\\n      \"${CODACY_BASE_URL_OR_DEFAULT}/2.0/$ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME/commit/$COMMIT_SHA/issuesRemoteResults\"\n  else\n    cat /tmp/codacy-out.json\n  fi\nelse\n  echo \"Skipping Clang Tidy\"\nfi\n"},{"name":"Parse and Push Faux Pas results","shell":"bash","run":"set -eux\n\nif [ -n \"${{ inputs.faux-pas-output }}\" ]; then\n  cd /tmp\n  CODACY_FAUX_PAS_VERSION=$(curl -SL \"https://artifacts.codacy.com/bin/codacy-faux-pas/latest\" -o-)\n  curl -fsSL \"https://artifacts.codacy.com/bin/codacy-faux-pas/$CODACY_FAUX_PAS_VERSION/codacy-faux-pas-$CODACY_FAUX_PAS_VERSION\" -o /tmp/codacy-faux-pas\n  chmod +x /tmp/codacy-faux-pas\n  cd -\n\n  /tmp/codacy-faux-pas \u003c \"${{ inputs.faux-pas-output }}\" \u003e /tmp/codacy-out.json\n  if [ \"${{ inputs.upload }}\" == \"true\" ]; then\n    curl -XPOST -L -H \"$CURL_CODACY_AUTH_AUTHENTICATION\" \\\n      -H \"Content-type: application/json\" --data-binary @/tmp/codacy-out.json \\\n      \"${CODACY_BASE_URL_OR_DEFAULT}/2.0/$ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME/commit/$COMMIT_SHA/issuesRemoteResults\"\n  else\n    cat /tmp/codacy-out.json\n  fi\nelse\n  echo \"Skipping Faux Pas\"\nfi\n"},{"name":"Set Codacy CLI version","shell":"bash","run":"echo \"CODACY_ANALYSIS_CLI_VERSION=7.9.11\" \u003e\u003e $GITHUB_ENV"},{"name":"Set script path environment variable","shell":"bash","run":"echo \"CLI_SCRIPT_PATH=${{ github.action_path }}/codacy-analysis-cli.sh\" \u003e\u003e $GITHUB_ENV"},{"name":"Download Codacy CLI script","shell":"bash","run":"wget -O - https://raw.githubusercontent.com/codacy/codacy-analysis-cli/${{ env.CODACY_ANALYSIS_CLI_VERSION }}/bin/codacy-analysis-cli.sh \u003e ${{ env.CLI_SCRIPT_PATH }}"},{"name":"Change Codacy CLI script permissions","shell":"bash","run":"chmod +x \"${{ env.CLI_SCRIPT_PATH }}\""},{"name":"Run Codacy CLI","shell":"bash","run":"if [ -n \"${{ inputs.registry-address }}\" ]; then\n  export REGISTRY_ADDRESS=${{ inputs.registry-address }}\nfi\nif [ \"${{ inputs.run-docker-tools }}\" == \"true\" ]; then\n  ${{ env.CLI_SCRIPT_PATH }} \\\n    analyze \\\n    --skip-commit-uuid-validation \\\n    --commit-uuid $COMMIT_SHA \\\n    $(if [ \"${{ inputs.verbose }}\" == \"true\" ]; then echo \"--verbose\"; fi) \\\n    $(if [ -n \"${{ inputs.project-token }}\" ]; then echo \"--project-token ${{ inputs.project-token }}\"; fi) \\\n    $(if [ -n \"${{ inputs.api-token }}\" ]; then echo \"--api-token ${{ inputs.api-token }} --username $OWNER_NAME --project $REPOSITORY_NAME --provider $ORGANIZATION_PROVIDER\"; fi) \\\n    $(if [ -n \"${{ inputs.codacy-api-base-url }}\" ]; then echo \"--codacy-api-base-url ${{ inputs.codacy-api-base-url }}\"; fi) \\\n    $(if [ -n \"${{ inputs.format }}\" ]; then echo \"--format ${{ inputs.format }}\"; fi) \\\n    $(if [ -n \"${{ inputs.output }}\" ]; then echo \"--output ${{ inputs.output }}\"; fi) \\\n    $(if [ -n \"${{ inputs.directory }}\" ]; then echo \"--directory ${{ inputs.directory }}\"; fi) \\\n    $(if [ -n \"${{ inputs.parallel }}\" ]; then echo \"--parallel ${{ inputs.parallel }}\"; fi) \\\n    $(if [ -n \"${{ inputs.max-tool-memory }}\" ]; then echo \"--max-tool-memory ${{ inputs.max-tool-memory }}\"; fi) \\\n    $(if [ -n \"${{ inputs.max-allowed-issues }}\" ]; then echo \"--max-allowed-issues ${{ inputs.max-allowed-issues }}\"; fi) \\\n    $(if [ -n \"${{ inputs.tool }}\" ]; then echo \"--tool ${{ inputs.tool }}\"; fi) \\\n    $(if [ -n \"${{ inputs.tool-timeout }}\" ]; then echo \"--tool-timeout ${{ inputs.tool-timeout }}\"; fi) \\\n    $(if [ \"${{ inputs.skip-uncommitted-files-check }}\" == \"true\" ]; then echo \"--skip-uncommitted-files-check\"; fi) \\\n    $(if [ \"${{ inputs.upload }}\" == \"true\" ]; then echo \"--upload\"; fi) \\\n    $(if [ -n \"${{ inputs.upload-batch-size }}\" ]; then echo \"--upload-batch-size ${{ inputs.upload-batch-size }}\"; fi) \\\n    $(if [ \"${{ inputs.fail-if-incomplete }}\" == \"true\" ]; then echo \"--fail-if-incomplete\"; fi) \\\n    $(if [ \"${{ inputs.allow-network }}\" == \"true\" ]; then echo \"--allow-network\"; fi) \\\n    $(if [ \"${{ inputs.force-file-permissions }}\" == \"true\" ]; then echo \"--force-file-permissions\"; fi) \\\n    $(if [ \"${{ inputs.gh-code-scanning-compat }}\" == \"true\" ]; then echo \"--gh-code-scanning-compat\"; fi) \\\n    $(if [ -n \"${{ inputs.registry-address }}\" ]; then echo \"--registry-address ${{ inputs.registry-address }}\"; fi)\nelse\n  echo \"Skipping docker tools\"\nfi\n"},{"name":"Let Codacy know it can start processing the analysis results","shell":"bash","run":"if [ \"${{ inputs.upload }}\" == \"true\" ]; then\n  echo \"Uploading results for $ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME commit $COMMIT_SHA\"\n  curl -XPOST -L -H \"$CURL_CODACY_AUTH_AUTHENTICATION\" \\\n    -H \"Content-type: application/json\" \\\n    \"${CODACY_BASE_URL_OR_DEFAULT}/2.0/$ORGANIZATION_PROVIDER/$OWNER_NAME/$REPOSITORY_NAME/commit/$COMMIT_SHA/resultsFinal\"\nelse\n  echo \"Skipping results upload\"\nfi\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":37864068,"uuid":"217691904","full_name":"codacy/codacy-analysis-cli-action","owner":"codacy","description":"GitHub Action for the codacy-analysis-cli","archived":false,"fork":false,"pushed_at":"2025-07-17T14:27:43.000Z","size":530,"stargazers_count":63,"open_issues_count":13,"forks_count":18,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-08-17T22:31:36.133Z","etag":null,"topics":["automation","github-actions","static-analysis"],"latest_commit_sha":null,"homepage":"https://github.com/codacy/codacy-analysis-cli","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codacy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-26T10:20:46.000Z","updated_at":"2025-08-13T08:21:50.000Z","dependencies_parsed_at":"2024-05-08T09:44:52.501Z","dependency_job_id":"9903877e-3ae8-4e34-9fe0-6060321c5834","html_url":"https://github.com/codacy/codacy-analysis-cli-action","commit_stats":{"total_commits":120,"total_committers":24,"mean_commits":5.0,"dds":0.6833333333333333,"last_synced_commit":"09916000460adeeedc96b9704f86deba53e2ad5d"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codacy","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/sbom","scorecard":{"id":295390,"data":{"date":"2025-08-11","repo":{"name":"github.com/codacy/codacy-analysis-cli-action","commit":"d28ce580f19309cd493628eba4641f745822082c"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.4,"checks":[{"name":"Code-Review","score":10,"reason":"all changesets reviewed","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":"Maintained","score":6,"reason":"8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"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":"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/comment_issue.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/comment_issue.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/comment_issue.yml:36: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/comment_issue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/comment_issue.yml:59: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/comment_issue.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/comment_issue.yml:70: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/comment_issue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/comment_issue.yml:85: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/comment_issue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/create_issue.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/create_issue.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/create_issue.yml:56: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/create_issue.yml:81: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/create_issue_on_label.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue_on_label.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/create_issue_on_label.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue_on_label.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/create_issue_on_label.yml:56: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue_on_label.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/create_issue_on_label.yml:73: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/create_issue_on_label.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/publish-action.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/codacy/codacy-analysis-cli-action/publish-action.yml/master?enable=pin","Info:   0 out of   7 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   7 third-party 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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/comment_issue.yml:1","Warn: no topLevel permission defined: .github/workflows/create_issue.yml:1","Warn: no topLevel permission defined: .github/workflows/create_issue_on_label.yml:1","Warn: no topLevel permission defined: .github/workflows/publish-action.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":"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":"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: 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":"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":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"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 30 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-17T19:22:08.481Z","repository_id":37864068,"created_at":"2025-08-17T19:22:08.481Z","updated_at":"2025-08-17T19:22:08.481Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270918297,"owners_count":24667666,"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-08-17T02:00:09.016Z","response_time":129,"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":"codacy","name":"Codacy","uuid":"1834093","kind":"organization","description":"Codacy helps to build effortless code quality and security for developers. Build clean, secure code efficiently and fearlessly with Codacy.","email":"code@codacy.com","website":"https://www.codacy.com","location":"Portugal","twitter":"codacy","company":null,"icon_url":"https://avatars.githubusercontent.com/u/1834093?v=4","repositories_count":156,"last_synced_at":"2025-07-22T02:52:54.313Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/codacy","funding_links":[],"total_stars":1538,"followers":192,"following":0,"created_at":"2022-11-04T06:14:37.523Z","updated_at":"2025-07-22T02:52:54.313Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codacy","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codacy/repositories"},"tags":[{"name":"v4.4.5","sha":"97bf5df3c09e75f5bcd72695998f96ebd701846e","kind":"commit","published_at":"2024-07-12T13:51:35.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.5","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.5","dependencies_parsed_at":"2024-07-18T10:13:55.120Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.5/manifests"},{"name":"v4.4.4","sha":"3ad04f4ce2ebda15114704d442b57ef1def660fc","kind":"commit","published_at":"2024-07-11T14:11:50.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.4","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.4","dependencies_parsed_at":"2024-07-18T10:13:55.287Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.4/manifests"},{"name":"v4.4.3","sha":"3987b1de7dc88cddea6469f4d6ee9b8d15c73754","kind":"commit","published_at":"2024-07-11T13:33:24.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.3","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.3","dependencies_parsed_at":"2024-07-18T10:13:55.422Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.3/manifests"},{"name":"v4.4.2","sha":"55bddef24a2fd5c46d414e171e80a44ece588894","kind":"commit","published_at":"2024-07-11T11:53:32.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.2","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.2","dependencies_parsed_at":"2024-07-18T10:13:55.182Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.2/manifests"},{"name":"v4.4","sha":"3ff8e64eb4b714c4bee91b7b4eea31c6fc2c4f93","kind":"commit","published_at":"2024-05-08T08:52:20.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4","dependencies_parsed_at":"2024-05-10T04:16:18.564Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4/manifests"},{"name":"v4.4.1","sha":"3ff8e64eb4b714c4bee91b7b4eea31c6fc2c4f93","kind":"commit","published_at":"2024-05-08T08:52:20.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.1","dependencies_parsed_at":"2024-05-10T04:16:18.563Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.1/manifests"},{"name":"v4.4.0","sha":"33d455949345bddfdb845fba76b57b70cc83754b","kind":"commit","published_at":"2024-02-08T14:13:34.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.4.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.4.0","dependencies_parsed_at":"2024-02-12T05:15:22.489Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.4.0/manifests"},{"name":"v4.3.0","sha":"5cc54a75f9ad88159bb54046196d920e40e367a5","kind":"commit","published_at":"2023-03-07T09:54:01.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.3.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.3.0","dependencies_parsed_at":"2023-06-01T00:13:14.764Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.3.0/manifests"},{"name":"v4.3","sha":"5cc54a75f9ad88159bb54046196d920e40e367a5","kind":"commit","published_at":"2023-03-07T09:54:01.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.3","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.3","dependencies_parsed_at":"2023-06-01T00:13:15.704Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.3/manifests"},{"name":"v4","sha":"d43127fe38d20c527dc1951ae5aea23148bab738","kind":"commit","published_at":"2022-09-20T16:05:32.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4","dependencies_parsed_at":"2023-05-31T16:51:41.177Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4/manifests"},{"name":"v4.2.0","sha":"d43127fe38d20c527dc1951ae5aea23148bab738","kind":"commit","published_at":"2022-09-20T16:05:32.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.2.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.2.0","dependencies_parsed_at":"2023-05-31T16:51:40.948Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.2.0/manifests"},{"name":"v4.2","sha":"d43127fe38d20c527dc1951ae5aea23148bab738","kind":"commit","published_at":"2022-09-20T16:05:32.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.2","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.2","dependencies_parsed_at":"2023-05-31T16:51:41.087Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.2/manifests"},{"name":"v4.1.0","sha":"8abcaf1b06f1d9bd44d5795bbc679440aeb6ea7c","kind":"commit","published_at":"2022-06-15T09:25:17.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.1.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.1.0","dependencies_parsed_at":"2023-05-31T16:51:41.297Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.1.0/manifests"},{"name":"v4.1","sha":"8abcaf1b06f1d9bd44d5795bbc679440aeb6ea7c","kind":"commit","published_at":"2022-06-15T09:25:17.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v4.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v4.1","dependencies_parsed_at":"2023-05-31T16:51:41.387Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v4.1/manifests"},{"name":"4.0.2","sha":"f38648320929161d81646834fbee4d75f6502aea","kind":"commit","published_at":"2022-03-09T15:50:26.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/4.0.2","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/4.0.2","dependencies_parsed_at":"2023-05-31T16:51:42.598Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@4.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.2/manifests"},{"name":"4.0.1","sha":"29e74c95aaebf52d060ee760463f72d3e210360c","kind":"commit","published_at":"2022-03-03T16:15:03.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/4.0.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/4.0.1","dependencies_parsed_at":"2023-05-31T16:51:43.287Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@4.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.1/manifests"},{"name":"4.0.0","sha":"0de770495bd94bdac1ba7d5043a72b252ddbeec3","kind":"commit","published_at":"2021-07-19T13:10:25.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/4.0.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/4.0.0","dependencies_parsed_at":"2023-05-31T16:51:44.985Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/4.0.0/manifests"},{"name":"3.0.3","sha":"b3451bc69d89f9f71fd0e2fbb9597e4ea9b631b1","kind":"commit","published_at":"2021-05-21T11:15:00.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/3.0.3","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/3.0.3","dependencies_parsed_at":"2023-05-31T16:51:46.769Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@3.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.3/manifests"},{"name":"3.0.2","sha":"9d53f2c831345a03cc0cbef95e2032b8a9338a07","kind":"commit","published_at":"2021-05-11T11:02:23.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/3.0.2","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/3.0.2","dependencies_parsed_at":"2023-05-31T16:51:47.338Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@3.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.2/manifests"},{"name":"3.0.1","sha":"84fbefef91e53a3e8a5e031719a762ca706731d5","kind":"commit","published_at":"2021-05-04T14:38:34.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/3.0.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/3.0.1","dependencies_parsed_at":"2023-05-31T16:51:48.005Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.1/manifests"},{"name":"3.0.0","sha":"77f0691dd8d8307b9d0b6b1b812337682f11c9ec","kind":"commit","published_at":"2021-04-16T09:16:26.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/3.0.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/3.0.0","dependencies_parsed_at":"2023-05-31T16:51:48.612Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/3.0.0/manifests"},{"name":"2.0.1","sha":"719f3c81c34b74acd0f8ed69cd8e4be28fc70ac8","kind":"commit","published_at":"2021-03-02T09:27:07.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/2.0.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/2.0.1","dependencies_parsed_at":"2023-05-31T16:51:49.280Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/2.0.1/manifests"},{"name":"2.0.0","sha":"204208f730d99d8b719a271b08e2c5770be8ee6e","kind":"commit","published_at":"2021-02-22T12:08:58.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/2.0.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/2.0.0","dependencies_parsed_at":"2023-05-31T16:51:49.848Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/2.0.0/manifests"},{"name":"1.1.0","sha":"d840f886c4bd4edc059706d09c6a1586111c540b","kind":"commit","published_at":"2020-10-12T16:21:43.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/1.1.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/1.1.0","dependencies_parsed_at":"2023-05-31T16:51:50.450Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.1.0/manifests"},{"name":"1.0.1","sha":"50df40eed1c307c04aba7bab63f65bfc690891c9","kind":"commit","published_at":"2020-09-25T13:22:02.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/1.0.1","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/1.0.1","dependencies_parsed_at":"2023-05-31T16:51:51.294Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.0.1/manifests"},{"name":"1.0.0","sha":"9e45d0be1fc80fd2d86048032610422fdbcc6068","kind":"commit","published_at":"2020-09-18T12:48:49.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/1.0.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/1.0.0","dependencies_parsed_at":"2023-05-31T16:51:51.906Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/1.0.0/manifests"},{"name":"v1.0","sha":"0b87c8cd57789136c5deb782d3cdfe52d2f9206c","kind":"commit","published_at":"2019-10-27T17:01:54.000Z","download_url":"https://codeload.github.com/codacy/codacy-analysis-cli-action/tar.gz/v1.0","html_url":"https://github.com/codacy/codacy-analysis-cli-action/releases/tag/v1.0","dependencies_parsed_at":"2023-05-31T16:51:52.276Z","dependency_job_id":null,"purl":"pkg:github/codacy/codacy-analysis-cli-action@v1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/tags/v1.0/manifests"}]},"repo_metadata_updated_at":"2025-08-17T22:38:01.951Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1655,"rankings":{"downloads":null,"dependent_repos_count":0.6084614165742355,"dependent_packages_count":0.0,"stargazers_count":3.612739660909523,"forks_count":2.585961020440501,"docker_downloads_count":null,"average":1.701790524481065},"purl":"pkg:githubactions/codacy/codacy-analysis-cli-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/codacy/codacy-analysis-cli-action","docker_dependents_count":2,"docker_downloads_count":25165584,"usage_url":"https://repos.ecosyste.ms/usage/actions/codacy/codacy-analysis-cli-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/codacy/codacy-analysis-cli-action/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-17T22:38:01.559Z","issues_count":47,"pull_requests_count":75,"avg_time_to_close_issue":6085062.44117647,"avg_time_to_close_pull_request":1009043.68,"issues_closed_count":34,"pull_requests_closed_count":75,"pull_request_authors_count":19,"issue_authors_count":34,"avg_comments_per_issue":2.8936170212765955,"avg_comments_per_pull_request":0.5066666666666667,"merged_pull_requests_count":66,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":5,"past_year_pull_requests_count":4,"past_year_avg_time_to_close_issue":53780.0,"past_year_avg_time_to_close_pull_request":527.75,"past_year_issues_closed_count":2,"past_year_pull_requests_closed_count":4,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":5,"past_year_avg_comments_per_issue":1.8,"past_year_avg_comments_per_pull_request":1.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":4,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/codacy%2Fcodacy-analysis-cli-action/issues","maintainers":[{"login":"prcr","count":25,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/prcr"},{"login":"machadoit","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/machadoit"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/codacy%2Fcodacy-analysis-cli-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/codacy%2Fcodacy-analysis-cli-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/codacy%2Fcodacy-analysis-cli-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/codacy%2Fcodacy-analysis-cli-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/codacy%2Fcodacy-analysis-cli-action/codemeta","maintainers":[]}