{"id":5806465,"name":"google-github-actions/deploy-cloudrun","ecosystem":"actions","description":"Use this action to deploy a container or source code to Google Cloud Run.","homepage":"https://cloud.google.com/run","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/google-github-actions/deploy-cloudrun","keywords_array":["actions","cloud-run","cloudrun","gcp","github-actions","google-cloud","google-cloud-platform","google-cloud-run"],"namespace":"google-github-actions","versions_count":40,"first_release_published_at":"2020-11-13T01:51:05.000Z","latest_release_published_at":"2025-09-03T14:04:12.000Z","latest_release_number":"v3.0.1","last_synced_at":"2026-04-13T04:30:53.888Z","created_at":"2023-01-04T16:11:51.454Z","updated_at":"2026-04-13T04:30:53.888Z","registry_url":"https://github.com/google-github-actions/deploy-cloudrun","install_command":null,"documentation_url":null,"metadata":{"name":"Deploy to Cloud Run","author":"Google LLC","description":"Use this action to deploy a container or source code to Google Cloud Run.","inputs":{"service":{"description":"ID of the service or fully-qualified identifier of the service. This is\nrequired unless providing `metadata` or `job`.","required":false},"job":{"description":"ID of the job or fully-qualified identifier of the job. This is required\nunless providing `metadata` or `service`.","required":false},"metadata":{"description":"YAML service description for the Cloud Run service. This is required\nunless providing `service` or `job`.","required":false},"image":{"description":"(Required, unless providing `metadata` or `source`) Fully-qualified name\nof the container image to deploy. For example:\n\n    us-docker.pkg.dev/cloudrun/container/hello:latest\n\nor\n\n    us-docker.pkg.dev/my-project/my-container/image:1.2.3","required":false},"source":{"description":"(Required, unless providing `metadata`, `image`, or `job`) Path to source\nto deploy. If specified, this will deploy the Cloud Run service from the\ncode specified at the given source directory.\n\nLearn more about the required permissions in [Deploying from source\ncode](https://cloud.google.com/run/docs/deploying-source-code).","required":false},"suffix":{"description":"String suffix to append to the revision name. Revision names always start\nwith the service name automatically. For example, specifying `v1` for a\nservice named `helloworld`, would lead to a revision named\n`helloworld-v1`. This option only applies to services.","required":false},"env_vars":{"description":"List of environment variables that should be set in the environment.\nThese are comma-separated or newline-separated `KEY=VALUE`. Keys or values\nthat contain separators must be escaped with a backslash (e.g. `\\,` or\n`\\\\n`) unless quoted. Any leading or trailing whitespace is trimmed unless\nvalues are quoted.\n\n```yaml\nenv_vars: |-\n  FRUIT=apple\n  SENTENCE=\" this will retain leading and trailing spaces \"\n```\n\nThis value will only be set if the input is a non-empty value. If a\nnon-empty value is given, the field values will be overwritten (not\nmerged). To remove all values, set the value to the literal string `{}`.\n\nIf both `env_vars` and `env_vars_file` are specified, the keys in\n`env_vars` will take precedence over the keys in `env_vars_file`.","required":false},"env_vars_update_strategy":{"description":"Controls how the environment variables are set on the Cloud Run service.\nIf set to \"merge\", then the environment variables are _merged_ with any\nupstream values. If set to \"overwrite\", then all environment variables on\nthe Cloud Run service will be replaced with exactly the values given by\nthe GitHub Action (making it authoritative).","default":"merge","required":true},"secrets":{"description":"List of KEY=VALUE pairs to use as secrets. These are comma-separated or\nnewline-separated `KEY=VALUE`. Keys or values that contain separators must\nbe escaped with a backslash (e.g. `\\,` or `\\\\n`) unless quoted. Any\nleading or trailing whitespace is trimmed unless values are quoted.\n\nThese can either be injected as environment variables or mounted as\nvolumes. Keys starting with a forward slash '/' are mount paths. All other\nkeys correspond to environment variables:\n\n```yaml\nwith:\n  secrets: |-\n    # As an environment variable:\n    KEY1=secret-key-1:latest\n\n    # As a volume mount:\n    /secrets/api/key=secret-key-2:latest\n```\n\nThis value will only be set if the input is a non-empty value. If a\nnon-empty value is given, the field values will be overwritten (not\nmerged). To remove all values, set the value to the literal string `{}`.","required":false},"secrets_update_strategy":{"description":"Controls how the secrets are set on the Cloud Run service. If set to\n`merge`, then the secrets are merged with any upstream values. If set to\n`overwrite`, then all secrets on the Cloud Run service will be replaced\nwith exactly the values given by the GitHub Action (making it\nauthoritative).","default":"merge","required":true},"labels":{"description":"List of labels that should be set on the function. These are\ncomma-separated or newline-separated `KEY=VALUE`. Keys or values that\ncontain separators must be escaped with a backslash (e.g. `\\,` or `\\\\n`)\nunless quoted. Any leading or trailing whitespace is trimmed unless values\nare quoted.\n\n```yaml\nlabels: |-\n  labela=my-label\n  labelb=my-other-label\n```\n\nThis value will only be set if the input is a non-empty value. If a\nnon-empty value is given, the field values will be overwritten (not\nmerged). To remove all values, set the value to the literal string `{}`.\n\nGoogle Cloud restricts the allowed values and length for labels. Please\nsee the Google Cloud documentation for labels for more information.","required":false},"skip_default_labels":{"description":"Skip applying the special annotation labels that indicate the deployment\ncame from GitHub Actions. The GitHub Action will automatically apply the\nfollowing labels which Cloud Run uses to enhance the user experience:\n\n    managed-by: github-actions\n    commit-sha: \u003csha\u003e\n\nSetting this to `true` will skip adding these special labels.","required":false,"default":"false"},"tag":{"description":"Traffic tag to assign to the newly-created revision. This option only\napplies to services.","required":false},"timeout":{"description":"Maximum request execution time, specified as a duration like \"10m5s\" for\nten minutes and 5 seconds.","required":false},"flags":{"description":"Space separate list of additional Cloud Run flags to pass to the deploy\ncommand. This can be used to apply advanced features that are not exposed\nvia this GitHub Action. For Cloud Run services, this command will be\n`gcloud run deploy`. For Cloud Run jobs, this command will be `gcloud jobs\ndeploy`.\n\n```yaml\nwith:\n  flags: '--add-cloudsql-instances=...'\n```\n\nFlags that include other flags must quote the _entire_ outer flag value. For\nexample, to pass `--args=-X=123`:\n\n```yaml\nwith:\n  flags: '--add-cloudsql-instances=... \"--args=-X=123\"'\n```\n\nSee the [complete list of\nflags](https://cloud.google.com/sdk/gcloud/reference/run/deploy#FLAGS) for\nmore information.\n\nPlease note, this GitHub Action does not parse or validate the flags. You\nare responsible for making sure the flags are available on the gcloud\nversion and subcommand.","required":false},"no_traffic":{"description":"If true, the newly deployed revision will not receive traffic. This option\nonly applies to services.","default":"false","required":false},"wait":{"description":"If true, the action will execute and wait for the job to complete before\nexiting. This option only applies to jobs.","default":"false","required":false},"revision_traffic":{"description":"Comma-separated list of revision traffic assignments.\n\n```yaml\nwith:\n  revision_traffic: 'my-revision=10' # percentage\n```\n\nTo update traffic to the latest revision, use the special tag \"LATEST\":\n\n```yaml\nwith:\n  revision_traffic: 'LATEST=100'\n```\n\nThis is mutually-exclusive with `tag_traffic`. This option only applies\nto services.","required":false},"tag_traffic":{"description":"Comma-separated list of tag traffic assignments.\n\n```yaml\nwith:\n  tag_traffic: 'my-tag=10' # percentage\n```\n\nThis is mutually-exclusive with `revision_traffic`. This option only\napplies to services.","required":false},"update_traffic_flags":{"description":"Space separate list of additional Cloud Run flags to pass to the `gcloud\nrun services update-traffic` command. This can be used to apply advanced\nfeatures that are not exposed via this GitHub Action. This flag only\napplies when `revision_traffic` or `tag_traffic` is set.\n\n```yaml\nwith:\n  traffic_flags: '--set-tags=...'\n```\n\nFlags that include other flags must quote the _entire_ outer flag value. For\nexample, to pass `--args=-X=123`:\n\n```yaml\nwith:\n  flags: '--set-tags=... \"--args=-X=123\"'\n```\n\nSee the [complete list of\nflags](https://cloud.google.com/sdk/gcloud/reference/run/services/update#FLAGS)\nfor more information.\n\nPlease note, this GitHub Action does not parse or validate the flags. You\nare responsible for making sure the flags are available on the gcloud\nversion and subcommand.","required":false},"project_id":{"description":"ID of the Google Cloud project in which to deploy the service.","required":false},"region":{"description":"Region in which the Cloud Run services are deployed.","default":"us-central1","required":false},"gcloud_version":{"description":"Version of the Cloud SDK to install. If unspecified or set to \"latest\",\nthe latest available gcloud SDK version for the target platform will be\ninstalled. Example: \"290.0.1\".","required":false},"gcloud_component":{"description":"Version of the Cloud SDK components to install and use.","required":false}},"outputs":{"url":{"description":"The URL of the Cloud Run service."}},"branding":{"icon":"chevrons-right","color":"blue"},"runs":{"using":"node24","main":"dist/main/index.js"},"default_branch":"main","path":null},"repo_metadata":{"id":37468789,"uuid":"308778047","full_name":"google-github-actions/deploy-cloudrun","owner":"google-github-actions","description":"A GitHub Action for deploying services to Google Cloud Run.","archived":false,"fork":false,"pushed_at":"2025-09-03T14:04:27.000Z","size":4214,"stargazers_count":540,"open_issues_count":4,"forks_count":132,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-09-25T02:02:10.534Z","etag":null,"topics":["actions","cloud-run","cloudrun","gcp","github-actions","google-cloud","google-cloud-platform","google-cloud-run"],"latest_commit_sha":null,"homepage":"https://cloud.google.com/run","language":"TypeScript","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/google-github-actions.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-10-31T01:09:29.000Z","updated_at":"2025-09-23T02:27:37.000Z","dependencies_parsed_at":"2023-01-04T12:15:04.718Z","dependency_job_id":"7db7b80c-72c9-42e9-81a0-d91b0481525e","html_url":"https://github.com/google-github-actions/deploy-cloudrun","commit_stats":{"total_commits":297,"total_committers":16,"mean_commits":18.5625,"dds":0.595959595959596,"last_synced_commit":"1ec29da1351112c7904fb60454a55e3e1021a51c"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google-github-actions","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/sbom","scorecard":{"id":435964,"data":{"date":"2025-08-11","repo":{"name":"github.com/google-github-actions/deploy-cloudrun","commit":"147732842f8a61ce9bd3b3f8e9f6597fe991ad65"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":7,"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":"Maintained","score":3,"reason":"3 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 3","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":9,"reason":"Found 23/25 approved changesets -- score normalized to 9","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":"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":"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":"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":"Token-Permissions","score":8,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/draft-release.yml:20","Warn: jobLevel 'packages' permission set to 'write': .github/workflows/publish.yml:15","Info: jobLevel 'contents' permission set to 'read': .github/workflows/publish.yml:13","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/release.yml:14","Warn: jobLevel 'packages' permission set to 'write': .github/workflows/release.yml:15","Info: topLevel 'contents' permission set to 'read': .github/workflows/cleanup.yml:9","Warn: no topLevel permission defined: .github/workflows/draft-release.yml:1","Info: topLevel 'contents' permission set to 'read': .github/workflows/integration.yml:19","Warn: no topLevel permission defined: .github/workflows/publish.yml:1","Warn: no topLevel permission defined: .github/workflows/release.yml:1","Info: topLevel 'contents' permission set to 'read': .github/workflows/unit.yml:19","Warn: topLevel 'statuses' permission set to 'write': .github/workflows/unit.yml:20"],"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":"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":"Pinned-Dependencies","score":5,"reason":"dependency not pinned by hash detected -- score normalized to 5","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/cleanup.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/cleanup.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cleanup.yml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/cleanup.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/draft-release.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/draft-release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/integration.yml:56: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/integration.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/integration.yml:174: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/integration.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/integration.yml:246: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/integration.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/google-github-actions/deploy-cloudrun/release.yml/main?enable=pin","Warn: containerImage not pinned by hash: example-app/Dockerfile:17: pin your Docker image by updating node:20-slim to node:20-slim@sha256:6db5e436948af8f0244488a1f658c2c8e55a3ae51ca2e1686ed042be8f25f70a","Info:  11 out of  11 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   7 third-party GitHubAction dependencies pinned","Info:   0 out of   1 containerImage dependencies pinned","Info:   5 out of   5 npmCommand 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":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/google-github-actions/.github/SECURITY.md:1","Info: Found linked content: github.com/google-github-actions/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/google-github-actions/.github/SECURITY.md:1","Info: Found text in security policy: github.com/google-github-actions/.github/SECURITY.md:1"],"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":"Branch-Protection","score":4,"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'","Info: codeowner review is required on branch 'main'","Warn: 'last push approval' is disabled on branch 'main'","Warn: 'up-to-date branches' is disabled on branch 'main'","Info: status check found to merge onto on 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":7,"reason":"SAST tool is not run on all commits -- score normalized to 7","details":["Warn: 21 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"}},{"name":"Vulnerabilities","score":9,"reason":"1 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: GHSA-xffm-g5w8-qvg7"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-19T04:42:28.100Z","repository_id":37468789,"created_at":"2025-08-19T04:42:28.100Z","updated_at":"2025-08-19T04:42:28.100Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277812061,"owners_count":25881286,"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-01T02:00:09.286Z","response_time":88,"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":"google-github-actions","name":"Google GitHub Actions","uuid":"71461757","kind":"organization","description":"Google Cloud integrations for the GitHub Actions Marketplace","email":null,"website":"https://opensource.google/projects/github-actions","location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/71461757?v=4","repositories_count":20,"last_synced_at":"2023-03-05T03:20:08.066Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/google-github-actions","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-15T05:06:31.708Z","updated_at":"2023-03-05T03:20:08.206Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google-github-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google-github-actions/repositories"},"tags":[{"name":"v3.0.1","sha":"2028e2d7d30a78c6910e0632e48dd561b064884d","kind":"commit","published_at":"2025-09-03T14:04:12.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v3.0.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v3.0.1","dependencies_parsed_at":"2025-09-13T04:33:47.688Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3.0.1/manifests"},{"name":"v2.7.6","sha":"251330ba9a8a34bfbc1622895f42e1d53fd14522","kind":"commit","published_at":"2025-09-03T13:57:17.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.6","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.6","dependencies_parsed_at":"2025-09-13T04:33:47.688Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.6/manifests"},{"name":"v3","sha":"e1b1b0b48bb18f99528605af70dfee03976c964b","kind":"commit","published_at":"2025-09-03T01:41:04.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v3","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v3","dependencies_parsed_at":null,"dependency_job_id":"ed4b25fd-bf43-48cb-a611-f38cb5f320cd","purl":"pkg:github/google-github-actions/deploy-cloudrun@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3/manifests"},{"name":"v3.0.0","sha":"e1b1b0b48bb18f99528605af70dfee03976c964b","kind":"commit","published_at":"2025-09-03T01:41:04.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v3.0.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v3.0.0","dependencies_parsed_at":null,"dependency_job_id":"8d52ee87-01df-4bd1-a5f5-f536e2af34cd","purl":"pkg:github/google-github-actions/deploy-cloudrun@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v3.0.0/manifests"},{"name":"v2.7.5","sha":"012c06ad1f4a2a7c0b2ff6373c6e62bdd9b1c2a5","kind":"commit","published_at":"2025-09-03T01:19:18.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.5","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.5","dependencies_parsed_at":null,"dependency_job_id":"6df6a343-1277-473c-93d9-bec9309368f2","purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.5/manifests"},{"name":"v2.7.4","sha":"147732842f8a61ce9bd3b3f8e9f6597fe991ad65","kind":"commit","published_at":"2025-07-18T21:57:40.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.4","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.4","dependencies_parsed_at":"2025-07-21T04:54:57.114Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.4/manifests"},{"name":"v2.7.3","sha":"9c5864eab7354d2e132307e685a2272655932799","kind":"commit","published_at":"2025-02-01T14:15:03.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.3","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.3","dependencies_parsed_at":"2025-04-15T04:35:39.539Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.3/manifests"},{"name":"v2.7.2","sha":"1ec29da1351112c7904fb60454a55e3e1021a51c","kind":"commit","published_at":"2024-10-29T13:59:29.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.2","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.2","dependencies_parsed_at":"2024-10-30T05:05:22.540Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.2/manifests"},{"name":"v2.7.1","sha":"6ffa584a8ff78a430af94158c5538716464ea5a0","kind":"commit","published_at":"2024-08-21T15:43:34.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.1","dependencies_parsed_at":"2024-08-23T04:23:49.921Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.1/manifests"},{"name":"v2.7.0","sha":"33553064113a37d688aa6937bacbdc481580be17","kind":"commit","published_at":"2024-08-19T21:58:53.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.7.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.7.0","dependencies_parsed_at":"2024-08-23T04:23:53.437Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.7.0/manifests"},{"name":"v2.6.1","sha":"7d80d04835529a43e6ed8dae087f6f90f591ee2d","kind":"commit","published_at":"2024-08-06T01:27:35.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.6.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.6.1","dependencies_parsed_at":"2024-08-06T04:56:10.503Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.6.1/manifests"},{"name":"v2.6.0","sha":"733e7b3262836985cf714bf611234120a6cf2e8c","kind":"commit","published_at":"2024-05-17T03:45:27.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.6.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.6.0","dependencies_parsed_at":"2024-05-18T05:20:12.867Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.6.0/manifests"},{"name":"v2.5.0","sha":"08b62e2b1f468fa6e6250870959f81dd00c59189","kind":"commit","published_at":"2024-05-10T16:29:25.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.5.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.5.0","dependencies_parsed_at":"2024-05-12T05:28:00.275Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.5.0/manifests"},{"name":"v2.4.2","sha":"1b14a749d5ef255c54086c2fada0e3f5a1643fa3","kind":"commit","published_at":"2024-05-09T19:41:34.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.4.2","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.4.2","dependencies_parsed_at":"2024-05-11T05:14:32.393Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.2/manifests"},{"name":"v2.4.1","sha":"c88e4fd64b5c0c13acd5bcd3bfd797cd9f8a960e","kind":"commit","published_at":"2024-05-01T18:38:29.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.4.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.4.1","dependencies_parsed_at":"2024-05-03T06:25:43.126Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.1/manifests"},{"name":"v2.4.0","sha":"01165691411082692bd7be1d46205239385177d4","kind":"commit","published_at":"2024-04-15T20:42:35.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.4.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.4.0","dependencies_parsed_at":"2024-04-17T09:50:45.400Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.4.0/manifests"},{"name":"v2.3.0","sha":"cfda0c0c46d80caa6495db245e894186b21d8f24","kind":"commit","published_at":"2024-03-28T18:48:52.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.3.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.3.0","dependencies_parsed_at":"2024-03-30T04:05:46.153Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.3.0/manifests"},{"name":"v2.2.0","sha":"b4a4335d697d5be41e5fa97dca581f479d4eb438","kind":"commit","published_at":"2024-01-23T01:54:16.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.2.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.2.0","dependencies_parsed_at":"2024-01-24T04:35:22.960Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.2.0/manifests"},{"name":"v2.1.0","sha":"27a202768956f13a8f64d7317498855f2bf36c66","kind":"commit","published_at":"2024-01-22T04:34:50.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.1.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.1.0","dependencies_parsed_at":"2024-01-24T04:35:22.979Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.1.0/manifests"},{"name":"v2","sha":"82a0d44f48151e2d393811779576ec6ad902146b","kind":"commit","published_at":"2023-12-08T17:30:54.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2","dependencies_parsed_at":"2023-12-10T05:01:19.558Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2/manifests"},{"name":"v2.0.0","sha":"82a0d44f48151e2d393811779576ec6ad902146b","kind":"commit","published_at":"2023-12-08T17:30:54.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v2.0.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v2.0.0","dependencies_parsed_at":"2023-12-10T05:01:19.475Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v2.0.0/manifests"},{"name":"v0.11.0","sha":"902592cd57d30d0f72ae0f73bb91512ce3c72452","kind":"commit","published_at":"2023-12-08T17:25:22.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.11.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.11.0","dependencies_parsed_at":"2023-12-10T05:01:19.624Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.11.0/manifests"},{"name":"v1.0.2","sha":"e62f655d5754bec48078a72edc015367b01ee97b","kind":"commit","published_at":"2023-05-08T18:19:21.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v1.0.2","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v1.0.2","dependencies_parsed_at":"2023-06-01T00:03:32.180Z","dependency_job_id":"ba39f68c-068f-48e3-8c8c-4f75536af9e4","purl":"pkg:github/google-github-actions/deploy-cloudrun@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"9c01af28be5da14b228ba369b7700d22830b35b7","kind":"commit","published_at":"2023-03-15T15:48:43.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v1.0.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v1.0.1","dependencies_parsed_at":"2023-06-01T00:03:32.730Z","dependency_job_id":"0f2b2620-39be-4005-bb73-3460378fe511","purl":"pkg:github/google-github-actions/deploy-cloudrun@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"194392f9d796cd42b2617a231eec28e08f9e27e1","kind":"commit","published_at":"2022-11-30T15:01:09.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v1.0.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v1.0.0","dependencies_parsed_at":"2023-06-01T00:03:32.198Z","dependency_job_id":"001397ac-64f5-4b7a-b99d-ede750be266e","purl":"pkg:github/google-github-actions/deploy-cloudrun@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1.0.0/manifests"},{"name":"v1","sha":"194392f9d796cd42b2617a231eec28e08f9e27e1","kind":"commit","published_at":"2022-11-30T15:01:09.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v1","dependencies_parsed_at":"2023-06-01T00:03:32.068Z","dependency_job_id":"bcbc743d-e510-4fd3-83c2-d7ea8a99f547","purl":"pkg:github/google-github-actions/deploy-cloudrun@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v1/manifests"},{"name":"v0.10.3","sha":"5081b8db809e5800ddffa3c692d71da0cb670a34","kind":"commit","published_at":"2022-10-14T20:28:13.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.10.3","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.10.3","dependencies_parsed_at":"2023-05-31T19:59:41.779Z","dependency_job_id":"0bc1b1fc-6f73-4886-9ae2-bf3c231a7eba","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.10.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.3/manifests"},{"name":"v0.10.2","sha":"b43b4b19f14b8c3260c02e7a68ece4a7989540ea","kind":"commit","published_at":"2022-10-13T18:08:00.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.10.2","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.10.2","dependencies_parsed_at":"2023-05-31T19:59:43.150Z","dependency_job_id":"78abc6ea-5a4e-4b3e-9b32-a37f843ee115","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.2/manifests"},{"name":"v0","sha":"530b4b6c6355648c5ef3ec32a4744d4e0659a016","kind":"commit","published_at":"2022-07-18T18:15:19.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0","dependencies_parsed_at":"2023-05-31T16:26:47.770Z","dependency_job_id":"45c55c9a-eb54-4c66-a1c1-d9ebf36663d6","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0/manifests"},{"name":"v0.10.1","sha":"530b4b6c6355648c5ef3ec32a4744d4e0659a016","kind":"commit","published_at":"2022-07-18T18:15:19.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.10.1","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.10.1","dependencies_parsed_at":"2023-05-31T16:26:46.510Z","dependency_job_id":"fadef71a-b46e-4aa2-9f42-7837c6bcb485","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.1/manifests"},{"name":"v0.10.0","sha":"355d383adc96c40dd8f140ffe4744e8f87ac6591","kind":"commit","published_at":"2022-05-02T19:40:17.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.10.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.10.0","dependencies_parsed_at":"2023-05-31T16:26:49.378Z","dependency_job_id":"2b7bea64-6a63-4f1f-b373-e7935182e022","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.10.0/manifests"},{"name":"v0.9.0","sha":"0866bc2ee44b61f9c49f1ab81726e7056fb249a2","kind":"commit","published_at":"2022-03-09T00:10:25.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.9.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.9.0","dependencies_parsed_at":"2023-05-31T16:26:50.781Z","dependency_job_id":"ff7d1f2b-8b3e-439d-91b9-1797bf808f16","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.9.0/manifests"},{"name":"v0.8.0","sha":"be1e860b23dc2862e670a8f3b8d7ed706750aa34","kind":"commit","published_at":"2022-01-31T22:43:00.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.8.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.8.0","dependencies_parsed_at":"2023-05-31T16:26:52.327Z","dependency_job_id":"8999c3d5-2aca-4121-9871-f5cbf517b131","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.8.0/manifests"},{"name":"v0.7.0","sha":"68aedae2fe24eb0ac1c16ce37ff5f6b37ae14983","kind":"commit","published_at":"2021-12-15T20:50:00.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.7.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.7.0","dependencies_parsed_at":"2023-05-31T16:26:53.931Z","dependency_job_id":"7448bad9-032c-4b2d-8ef9-5da28fe54f01","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.7.0/manifests"},{"name":"v0.6.0","sha":"8dbf118114bd53aea301a4da24489fc6959cdf23","kind":"commit","published_at":"2021-05-27T22:47:02.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.6.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.6.0","dependencies_parsed_at":"2023-05-31T16:26:55.430Z","dependency_job_id":"12a8f117-df2d-4e9b-bd24-b75dc7f30a6e","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.6.0/manifests"},{"name":"v0.5.0","sha":"d97177b869758a1d8c80a521448b48ac6619b80c","kind":"commit","published_at":"2021-04-05T15:40:10.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.5.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.5.0","dependencies_parsed_at":"2023-05-31T16:26:56.847Z","dependency_job_id":"66f2c9ac-0cae-4900-bdf7-a23155f188d3","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.5.0/manifests"},{"name":"v0.4.0","sha":"dfdc7398b6f55e1a2f68f1673a29f76fe9905c24","kind":"commit","published_at":"2021-02-11T20:09:12.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.4.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.4.0","dependencies_parsed_at":"2023-05-31T16:26:58.079Z","dependency_job_id":"9b2de1c5-9e23-4874-ac19-ff15c515d7f0","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.4.0/manifests"},{"name":"v0.3.0","sha":"ff8b38330cf81843db9cff366e335c34aa467c44","kind":"commit","published_at":"2021-01-27T21:08:26.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.3.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.3.0","dependencies_parsed_at":"2023-05-31T16:26:59.473Z","dependency_job_id":"9e715b65-d60a-4738-b843-67b63d6ed867","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.3.0/manifests"},{"name":"v0.2.0","sha":"121263a34a43f95e1f979191a14a8be4dc3c3f4d","kind":"commit","published_at":"2020-12-02T18:55:12.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.2.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-31T16:27:00.896Z","dependency_job_id":"3582fb32-d38c-48e4-98b1-c99e1f2c67c1","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.2.0/manifests"},{"name":"v0.1.0","sha":"1b5146f31868e72ebd49ebbacf4011aaaf247553","kind":"tag","published_at":"2020-11-13T01:51:05.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloudrun/tar.gz/v0.1.0","html_url":"https://github.com/google-github-actions/deploy-cloudrun/releases/tag/v0.1.0","dependencies_parsed_at":"2023-05-31T16:27:01.058Z","dependency_job_id":"cba327b1-d697-44f0-99f4-beb3f69567f8","purl":"pkg:github/google-github-actions/deploy-cloudrun@v0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/tags/v0.1.0/manifests"}]},"repo_metadata_updated_at":"2025-10-02T16:52:09.643Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":305,"rankings":{"downloads":null,"dependent_repos_count":2.161305656789732,"dependent_packages_count":0.0,"stargazers_count":0.6971953731579782,"forks_count":0.5736016479163365,"docker_downloads_count":null,"average":0.8580256694660117},"purl":"pkg:githubactions/google-github-actions/deploy-cloudrun","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/google-github-actions/deploy-cloudrun","docker_dependents_count":1,"docker_downloads_count":127,"usage_url":"https://repos.ecosyste.ms/usage/actions/google-github-actions/deploy-cloudrun","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/google-github-actions/deploy-cloudrun/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-21T22:54:23.435Z","issues_count":80,"pull_requests_count":194,"avg_time_to_close_issue":9134656.089552239,"avg_time_to_close_pull_request":1134209.7837837837,"issues_closed_count":67,"pull_requests_closed_count":185,"pull_request_authors_count":28,"issue_authors_count":74,"avg_comments_per_issue":2.55,"avg_comments_per_pull_request":0.6649484536082474,"merged_pull_requests_count":126,"bot_issues_count":0,"bot_pull_requests_count":41,"past_year_issues_count":8,"past_year_pull_requests_count":31,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":121363.29629629629,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":27,"past_year_pull_request_authors_count":12,"past_year_issue_authors_count":8,"past_year_avg_comments_per_issue":0.25,"past_year_avg_comments_per_pull_request":0.5806451612903226,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":6,"past_year_merged_pull_requests_count":21,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloudrun/issues","maintainers":[{"login":"sethvargo","count":78,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"},{"login":"google-github-actions-bot","count":34,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/google-github-actions-bot"},{"login":"verbanicm","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/verbanicm"}],"active_maintainers":[{"login":"sethvargo","count":8,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"},{"login":"google-github-actions-bot","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/google-github-actions-bot"},{"login":"verbanicm","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/verbanicm"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloudrun/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloudrun/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloudrun/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloudrun/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloudrun/codemeta","maintainers":[]}