{"id":5801509,"name":"google-github-actions/deploy-cloud-functions","ecosystem":"actions","description":"Use this action to deploy code to Google Cloud Functions.","homepage":"https://cloud.google.com/functions","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/google-github-actions/deploy-cloud-functions","keywords_array":["actions","cloud-functions","gcf","gcp","github-actions","google-cloud","google-cloud-functions","google-cloud-platform"],"namespace":"google-github-actions","versions_count":35,"first_release_published_at":"2020-11-13T01:19:08.000Z","latest_release_published_at":"2024-10-24T15:02:21.000Z","latest_release_number":"v3.0.7","last_synced_at":"2026-03-31T13:03:32.446Z","created_at":"2023-01-04T13:10:51.376Z","updated_at":"2026-03-31T13:03:32.446Z","registry_url":"https://github.com/google-github-actions/deploy-cloud-functions","install_command":null,"documentation_url":null,"metadata":{"name":"Deploy to Cloud Functions","author":"Google LLC","description":"Use this action to deploy code to Google Cloud Functions.","inputs":{"project_id":{"description":"ID of the Google Cloud project in which to deploy the service. The default\nvalue is computed from the environment.","required":false},"region":{"description":"Region in which the function should be deployed.","default":"us-central1","required":false},"universe":{"description":"The Google Cloud universe to use for constructing API endpoints. Trusted\nPartner Cloud and Google Distributed Hosted Cloud should set this to their\nuniverse address.\n\nYou can also override individual API endpoints by setting the environment\nvariable `GHA_ENDPOINT_OVERRIDE_\u003cendpoint\u003e` where `\u003cendpoint\u003e` is the API\nendpoint to override. For example:\n\n```yaml\nenv:\n  GHA_ENDPOINT_OVERRIDE_oauth2: 'https://oauth2.myapi.endpoint/v1'\n```\n\nFor more information about universes, see the Google Cloud documentation.","default":"googleapis.com","required":false},"name":{"description":"Name of the Cloud Function.","required":true},"description":{"description":"Human-friendly description of the Cloud Function.","required":false},"environment":{"description":"Runtime environment for the Cloud Function. Allowed values are \"GEN_1\" and\n\"GEN_2\", but this GitHub Action only provides support for \"GEN_2\".","default":"GEN_2","required":false},"kms_key_name":{"description":"Resource name of a Google Cloud KMS crypto key used to encrypt/decrypt\nfunction resources. If specified, you must also provide an artifact\nregistry repository using the 'docker_repository' field that was created\nwith the same key.","required":false},"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},"source_dir":{"description":"Path on disk to the root of the the function's source code. Defaults to\ncurrent directory. This does NOT follow symlinks to directories or files\nwhen generating the upload artifact.\n\n**NOTE:** The function source code must exist on the GitHub Actions\nfilesystem. This means you must have `use: actions/checkout@v4` before the\ndeployment step!.","default":"./","required":false},"runtime":{"description":"Runtime for the function, such as \"nodejs20\". For a list of all available\nruntimes, run:\n\n    $ gcloud functions runtimes list\n\nThe available runtimes change over time.","required":true},"build_environment_variables":{"description":"List of environment variables that should be set in the build 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\nbuild_environment_variables: |-\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\nPrevious versions of this GitHub Action also included a separate input for\nsourcing values from a value, but this is no longer supported. Use a\ncommunity action or script to read the file in a separate step and import\nthe contents as an output.","required":false},"build_service_account":{"description":"Service account to be used for building the container.","required":false},"build_worker_pool":{"description":"Name of the Cloud Build Custom Worker Pool that should be used to build\nthe function. The format of this field is:\n\n    projects/\u003cproject\u003e/locations/\u003cregion\u003e/workerPools/\u003cworkerPool\u003e\n\nwhere `\u003cproject\u003e` and `\u003cregion\u003e` are the project id and region\nrespectively where the worker pool is defined and `\u003cworkerPool\u003e` is the\nshort name of the worker pool.\n\nIf the project ID is not the same as the function, then the Cloud\nFunctions Service Agent must be granted the role Cloud Build Custom\nWorkers Builder in the project.","required":false},"docker_repository":{"description":"Repository in Artifact Registry to which the function docker image will be\npushed after it is built by Cloud Build. If unspecified, Cloud Functions\nwill create and use a repository named 'gcf-artifacts' for every deployed\nregion.\n\nThe value must match the pattern:\n\n    projects/\u003cproject\u003e/locations/\u003clocation\u003e/repositories/\u003crepository\u003e.\n\nCross-project repositories are not supported. Cross-location repositories\nare not supported. Repository format must be 'DOCKER'.","required":false},"entry_point":{"description":"Name of a Google Cloud Function (as defined in source code) that will be\nexecuted. Defaults to the resource name suffix (ID of the function), if\nnot specified.","required":false},"all_traffic_on_latest_revision":{"description":"If true, the latest function revision will be served all traffic.","default":true,"required":false},"cpu":{"description":"The number of available CPUs to set (e.g. 0.5, 2, 2000m). By default, a\nnew function's available CPUs is determined based on its memory value.","required":false},"memory":{"description":"The amount of memory available for the function to use. Allowed values are\nof the format: \u003cnumber\u003e\u003cunit\u003e with allowed units of \"k\", \"M\", \"G\", \"Ki\",\n\"Mi\", \"Gi\" (e.g 128M, 10Mb, 1024Gib).\n\nFor all generations, the default value is 256MB of memory.","required":false},"environment_variables":{"description":"List of environment variables that should be set in the runtime\nenvironment. These are comma-separated or newline-separated `KEY=VALUE`.\nKeys or values that contain separators must be escaped with a backslash\n(e.g. `\\,` or `\\\\n`) unless quoted. Any leading or trailing whitespace is\ntrimmed unless values are quoted.\n\n```yaml\nenvironment_variables: |-\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\nPrevious versions of this GitHub Action also included a separate input for\nsourcing values from a value, but this is no longer supported. Use a\ncommunity action or script to read the file in a separate step and import\nthe contents as an output.","required":false},"ingress_settings":{"description":"Ingress settings controls what traffic can reach the function. Valid\nvalues are \"ALLOW_ALL\", \"ALLOW_INTERNAL_ONLY\", and\n\"ALLOW_INTERNAL_AND_GCLB\".","default":"ALLOW_ALL","required":false},"max_instance_count":{"description":"Sets the maximum number of instances for the function. A function\nexecution that would exceed max-instances times out.","required":false},"max_instance_request_concurrency":{"description":"Sets the maximum number of concurrent requests allowed per container\ninstance.","required":false},"min_instance_count":{"description":"Sets the minimum number of instances for the function. This is helpful for\nreducing cold start times.","required":false},"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\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},"service_account":{"description":"The email address of the IAM service account associated with the Cloud Run\nservice for the function. The service account represents the identity of\nthe running function, and determines what permissions the function has. If\nnot provided, the function will use the project's default service account\nfor Compute Engine.\n\nNote this differs from the service account used to deploy the Cloud\nFunction, which is the currently-authenticated principal. However, the\ndeploying service account must have permission to impersonate the runtime\nservice account, which can be achieved by granting the deployment service\naccount \"roles/iam.serviceAccountUser\" permission on the runtime service\naccount.","required":false},"service_timeout":{"description":"The function execution timeout, specified as a time duration (e.g. \"30s\"\nfor 30 seconds).","default":"60s","required":false},"vpc_connector":{"description":"ID of the connector or fully qualified identifier for the connector.","required":false},"vpc_connector_egress_settings":{"description":"Egress settings controls what traffic is diverted through the VPC Access\nConnector resource. Allowed values are \"PRIVATE_RANGES_ONLY\" and\n\"ALL_TRAFFIC\".","default":"PRIVATE_RANGES_ONLY","required":false},"event_trigger_location":{"description":"The location of the trigger, which must be a region or multi-region where\nthe relevant events originate.","required":false},"event_trigger_type":{"description":"Specifies which action should trigger the function. For a list of\nacceptable values, run:\n\n    $ gcloud functions event-types list\n\nThis usually requires the eventarc API to be enabled:\n\n    $ gcloud services enable eventarc.googleapis.com\n\nThe available trigger types may change over time.","required":false},"event_trigger_filters":{"description":"List of event filters that the trigger should monitor. An event that\nmatches all the filteres will trigger calls to the function. These are\ncomma-separated or newline-separated `ATTRIBUTE=VALUE`. Attributes or\nvalues that contain separators must be escaped with a backslash (e.g. `\\,`\nor `\\\\n`) unless quoted. To treat a value as a path pattern, prefix the\nvalue with the literal string `PATTERN:`. Any leading or trailing\nwhitespace is trimmed unless values are quoted.\n\n```yaml\nevent_trigger_type: 'google.cloud.audit.log.v1.written'\nevent_trigger_filters: |-\n  serviceName=compute.googleapis.com\n  methodName=PATTERN:compute.instances.*\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\nFor more information, see [Eventarc\nTriggers](https://cloud.google.com/functions/docs/calling/eventarc) and\n[Eventarc Path\nPatterns](https://cloud.google.com/eventarc/docs/path-patterns)."},"event_trigger_pubsub_topic":{"description":"Name of Google Cloud Pub/Sub topic. Every message published in this topic\nwill trigger function execution with message contents passed as input\ndata of the format:\n\n    projects/\u003cproject_id\u003e/topics/\u003ctopic_id\u003e\n\nThe service account must have permissions on this topic.","required":false},"event_trigger_service_account":{"description":"The email address of the IAM service account associated with the Eventarc\ntrigger for the function. This is used for authenticated invocation.","required":false},"event_trigger_retry":{"description":"Describes whether event triggers should retry in case of function's\nexecution failure.","default":true,"required":false},"event_trigger_channel":{"description":"The name of the channel associated with the trigger in the format:\n\n    projects/\u003cproject\u003e/locations/\u003clocation\u003e/channels/\u003cchannel\u003e\n\nYou must provide a channel to receive events from Eventarc SaaS partners.","required":false}},"outputs":{"name":{"description":"Full resource name of the Cloud Function, of the format:\n\n    projects/\u003cproject\u003e/locations/\u003clocation\u003e/functions/\u003cfunction\u003e"},"url":{"description":"The URL of your Cloud Function."}},"branding":{"icon":"code","color":"blue"},"runs":{"using":"node20","main":"dist/index.js"},"default_branch":"main","path":null},"repo_metadata":{"id":37465911,"uuid":"308778075","full_name":"google-github-actions/deploy-cloud-functions","owner":"google-github-actions","description":"A GitHub Action that deploys source code to Google Cloud Functions.","archived":false,"fork":false,"pushed_at":"2024-06-04T14:38:52.000Z","size":3988,"stargazers_count":298,"open_issues_count":0,"forks_count":63,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-06-05T01:38:51.909Z","etag":null,"topics":["actions","cloud-functions","gcf","gcp","github-actions","google-cloud","google-cloud-functions","google-cloud-platform"],"latest_commit_sha":null,"homepage":"https://cloud.google.com/functions","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}},"created_at":"2020-10-31T01:09:42.000Z","updated_at":"2024-06-05T04:15:14.770Z","dependencies_parsed_at":"2023-10-11T18:49:43.586Z","dependency_job_id":"701323b1-3bed-423f-9f45-7b1483bb12b4","html_url":"https://github.com/google-github-actions/deploy-cloud-functions","commit_stats":{"total_commits":191,"total_committers":16,"mean_commits":11.9375,"dds":0.7068062827225131,"last_synced_commit":"667594bc01c9a5fb6b9af65a03b3158589042fcf"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/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-cloud-functions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":207368684,"owners_count":14709691,"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","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.2","sha":"043573caf530b0ceebcf854adf3acd12c1e03881","kind":"commit","published_at":"2024-06-04T14:38:37.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v3.0.2","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v3.0.2","dependencies_parsed_at":"2024-06-06T04:34:50.209Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.2/manifests"},{"name":"v3.0.1","sha":"316d9c51cfe1e4a81a5fc75c608d15a5492bce37","kind":"commit","published_at":"2024-05-29T18:25:07.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v3.0.1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v3.0.1","dependencies_parsed_at":"2024-05-31T04:03:50.037Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.1/manifests"},{"name":"v3.0.0","sha":"8a1e165dbe7472a3293fceaac95a146d6a477f6a","kind":"commit","published_at":"2024-05-22T15:58:43.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v3.0.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v3.0.0","dependencies_parsed_at":null,"dependency_job_id":"ca5922c3-08e2-49b4-abbe-c530170c39ca","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3.0.0/manifests"},{"name":"v3","sha":"8a1e165dbe7472a3293fceaac95a146d6a477f6a","kind":"commit","published_at":"2024-05-22T15:58:43.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v3","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v3","dependencies_parsed_at":null,"dependency_job_id":"bc232e5e-5191-451e-8b80-9a890f819888","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v3/manifests"},{"name":"v2.1.0","sha":"b418957976ca9302f13bf31bd06aa0256b8263e1","kind":"commit","published_at":"2024-01-23T01:56:11.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v2.1.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v2.1.0","dependencies_parsed_at":"2024-01-24T04:34:31.108Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2.1.0/manifests"},{"name":"v0.11.0","sha":"324936294863e3c89a0432dd625cffc06c09a7b1","kind":"tag","published_at":"2023-12-08T17:03:51.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.11.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.11.0","dependencies_parsed_at":"2023-12-10T05:16:13.126Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.11.0/manifests"},{"name":"v.11.0","sha":"324936294863e3c89a0432dd625cffc06c09a7b1","kind":"tag","published_at":"2023-12-08T17:02:22.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v.11.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v.11.0","dependencies_parsed_at":"2023-12-10T05:16:13.156Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v.11.0/manifests"},{"name":"v2.0.0","sha":"d8c8efb902ce8702540e8ae3a4d01a5f719c9c30","kind":"commit","published_at":"2023-12-08T16:59:22.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v2.0.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v2.0.0","dependencies_parsed_at":"2023-12-10T05:16:13.166Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2.0.0/manifests"},{"name":"v2","sha":"d8c8efb902ce8702540e8ae3a4d01a5f719c9c30","kind":"commit","published_at":"2023-12-08T16:59:22.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v2","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v2","dependencies_parsed_at":"2023-12-10T05:16:13.167Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v2/manifests"},{"name":"v1.0.1","sha":"4f9427c63ffe3ceeae0032efc3ebeb686417c1cf","kind":"commit","published_at":"2023-05-08T18:19:14.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v1.0.1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v1.0.1","dependencies_parsed_at":"2023-06-02T00:22:21.956Z","dependency_job_id":"6f5103b7-7c55-487d-a982-27ef4e3e8ecb","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1.0.1/manifests"},{"name":"v1","sha":"14509ca55199d9348161571e36c48e44f855030d","kind":"commit","published_at":"2022-11-24T17:34:05.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v1","dependencies_parsed_at":"2023-05-31T20:26:18.575Z","dependency_job_id":"8fdd8a58-eb29-42a5-9ac4-fd720b8ec21a","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1/manifests"},{"name":"v1.0.0","sha":"14509ca55199d9348161571e36c48e44f855030d","kind":"commit","published_at":"2022-11-24T17:34:05.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v1.0.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T20:26:17.387Z","dependency_job_id":"9f9a8478-bc17-4db5-96a8-5509f97cba1d","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v1.0.0/manifests"},{"name":"v0.10.3","sha":"69539a8ee03f967cf50d7ff1d224b027a8cf42bc","kind":"commit","published_at":"2022-10-14T20:27:46.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.10.3","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.10.3","dependencies_parsed_at":"2023-05-31T20:26:20.217Z","dependency_job_id":"7d232fdc-aa09-49c1-96a2-552303496f93","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.3/manifests"},{"name":"v0.10.2","sha":"1c0d7de56e5b8a163ee797be8ba282ecb9260112","kind":"commit","published_at":"2022-10-13T18:07:17.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.10.2","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.10.2","dependencies_parsed_at":"2023-05-31T20:26:21.417Z","dependency_job_id":"3c272636-4f0a-45b1-995c-7a775afedabd","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.2/manifests"},{"name":"v0.10.1","sha":"150007aacd86ec18da039413072dc179aa95bc16","kind":"commit","published_at":"2022-05-11T21:13:00.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.10.1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.10.1","dependencies_parsed_at":"2023-05-30T17:58:29.534Z","dependency_job_id":"d4068192-8a9b-461f-9d69-91b6acdb0b2f","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.1/manifests"},{"name":"v0","sha":"150007aacd86ec18da039413072dc179aa95bc16","kind":"commit","published_at":"2022-05-11T21:13:00.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0","dependencies_parsed_at":"2023-05-30T17:58:30.406Z","dependency_job_id":"d1a9adcc-1961-490b-b1d9-cef460298ec8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0/manifests"},{"name":"v0.10.0","sha":"78581af757ad1a23cbbd53448c043d64080dcb97","kind":"commit","published_at":"2022-03-18T21:45:03.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.10.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.10.0","dependencies_parsed_at":"2023-05-30T17:58:31.125Z","dependency_job_id":"3523eda5-c6d1-495c-b719-46b985a0363d","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.10.0/manifests"},{"name":"v0.9.0","sha":"baeb313f378bfcb3ec306eef9219185cb1e6c7fb","kind":"commit","published_at":"2022-03-09T00:35:39.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.9.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.9.0","dependencies_parsed_at":"2023-05-30T17:58:31.852Z","dependency_job_id":"0531a24d-f40a-485f-8c00-7290f55bb95a","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.9.0/manifests"},{"name":"v0.8.0","sha":"1ad4c7dc8a1547f26f79f0c2df74110f95bfd7c8","kind":"commit","published_at":"2022-01-31T22:43:40.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.8.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.8.0","dependencies_parsed_at":"2023-05-30T17:58:32.632Z","dependency_job_id":"13e10f4d-2908-454e-b051-66d33b5082e5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.8.0/manifests"},{"name":"v0.7.2","sha":"e63a453d925034eb70411c09bd7824158c05ccf3","kind":"tag","published_at":"2021-12-14T17:25:50.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.7.2","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.7.2","dependencies_parsed_at":"2023-05-30T17:58:33.675Z","dependency_job_id":"b2684b10-cdb3-4c6f-a32f-83246f3b20d5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.2/manifests"},{"name":"v0.7.1","sha":"5e25a800ae7ebd728e0447351d4beabe9292e9ae","kind":"tag","published_at":"2021-12-14T16:57:06.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.7.1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.7.1","dependencies_parsed_at":"2023-05-30T17:58:34.603Z","dependency_job_id":"693ced03-5a7c-40c6-973e-f46620790769","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.1/manifests"},{"name":"v0.7.0","sha":"ba68ab6b4540f08dd76d110dd0109f5ff1c31264","kind":"commit","published_at":"2021-12-09T20:46:51.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.7.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.7.0","dependencies_parsed_at":"2023-05-30T17:58:35.533Z","dependency_job_id":"ca281aeb-881b-46ff-893b-52b72ff22fef","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.7.0/manifests"},{"name":"v0.6.0","sha":"9e67600dd33c35845be649fd7363955a3235face","kind":"commit","published_at":"2021-06-29T23:18:53.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.6.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.6.0","dependencies_parsed_at":"2023-05-30T17:58:36.478Z","dependency_job_id":"e377bc21-3bef-4630-975d-d7d8beb6485f","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.6.0/manifests"},{"name":"v0.5.0","sha":"c99cb30902f7a3109d478e7fc5b7ab3f46cff166","kind":"commit","published_at":"2021-05-26T07:10:35.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.5.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.5.0","dependencies_parsed_at":"2023-05-30T17:58:37.266Z","dependency_job_id":"b5142af1-3a55-4cd5-92e2-a7771613dba2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.5.0/manifests"},{"name":"v0.4.0","sha":"6f5f12bc240f037a90ae95be3b3e032701d5085a","kind":"commit","published_at":"2021-02-25T02:35:18.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.4.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.4.0","dependencies_parsed_at":"2023-05-30T17:58:38.090Z","dependency_job_id":"3ca13070-5183-425e-9800-fcdeb219c3ad","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.4.0/manifests"},{"name":"v0.3.0","sha":"cc199d6ff73a91ab0edc7ebfc036d677f6cbec5b","kind":"commit","published_at":"2021-02-11T05:23:29.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.3.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.3.0","dependencies_parsed_at":"2023-05-30T17:58:39.111Z","dependency_job_id":"78521826-afc9-405a-ad21-1e10a9d5cb49","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.3.0/manifests"},{"name":"v0.2.0","sha":"140adabb1450a9cc587a9d03d94f35e654fd6ecb","kind":"commit","published_at":"2021-01-22T18:58:26.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.2.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-30T17:58:39.947Z","dependency_job_id":"5ef74bdf-355e-4ff8-99bf-87c33acead09","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.2.0/manifests"},{"name":"v0.1.2","sha":"7faa962492ec7b650406d15004fc19c6880f94d0","kind":"commit","published_at":"2020-11-13T21:25:31.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.1.2","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.1.2","dependencies_parsed_at":"2023-05-30T17:58:40.736Z","dependency_job_id":"3f57b474-8d36-4046-969f-458f0892decd","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.2/manifests"},{"name":"v0.1.1","sha":"ce118c0ee99b5f24b3d0f8e2704a49608139fc69","kind":"commit","published_at":"2020-11-13T01:25:07.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.1.1","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-30T17:58:41.648Z","dependency_job_id":"0abd3a3a-0099-4103-892b-f4b7171e9c8e","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.1/manifests"},{"name":"v0.1.0","sha":"c9f24afdf1afe71a751e07499c0d007655f28d5f","kind":"tag","published_at":"2020-11-13T01:19:08.000Z","download_url":"https://codeload.github.com/google-github-actions/deploy-cloud-functions/tar.gz/v0.1.0","html_url":"https://github.com/google-github-actions/deploy-cloud-functions/releases/tag/v0.1.0","dependencies_parsed_at":"2023-05-30T17:58:42.472Z","dependency_job_id":"e3b2c5ee-21f8-4e2a-be33-68e37deb221d","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/tags/v0.1.0/manifests"}]},"repo_metadata_updated_at":"2024-06-16T15:41:34.491Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":121,"rankings":{"downloads":null,"dependent_repos_count":4.3004278244335286,"dependent_packages_count":0.0,"stargazers_count":0.7827602598637301,"forks_count":0.8366344477895739,"docker_downloads_count":null,"average":1.479955633021708},"purl":"pkg:githubactions/google-github-actions/deploy-cloud-functions","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/google-github-actions/deploy-cloud-functions","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/google-github-actions/deploy-cloud-functions","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/google-github-actions/deploy-cloud-functions/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2024-05-31T02:43:40.300Z","issues_count":38,"pull_requests_count":95,"avg_time_to_close_issue":12722399.105263159,"avg_time_to_close_pull_request":799899.2947368422,"issues_closed_count":38,"pull_requests_closed_count":95,"pull_request_authors_count":18,"issue_authors_count":37,"avg_comments_per_issue":4.5,"avg_comments_per_pull_request":0.6526315789473685,"merged_pull_requests_count":69,"bot_issues_count":0,"bot_pull_requests_count":15,"past_year_issues_count":8,"past_year_pull_requests_count":23,"past_year_avg_time_to_close_issue":2806571.75,"past_year_avg_time_to_close_pull_request":409122.73913043475,"past_year_issues_closed_count":8,"past_year_pull_requests_closed_count":23,"past_year_pull_request_authors_count":6,"past_year_issue_authors_count":8,"past_year_avg_comments_per_issue":2.0,"past_year_avg_comments_per_pull_request":0.30434782608695654,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":4,"past_year_merged_pull_requests_count":20,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Fdeploy-cloud-functions/issues","maintainers":[{"login":"sethvargo","count":35,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"},{"login":"google-github-actions-bot","count":19,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/google-github-actions-bot"},{"login":"verbanicm","count":7,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/verbanicm"},{"login":"bharathkkb","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/bharathkkb"}],"active_maintainers":[{"login":"sethvargo","count":11,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"},{"login":"google-github-actions-bot","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/google-github-actions-bot"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloud-functions/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloud-functions/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloud-functions/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloud-functions/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Fdeploy-cloud-functions/codemeta","maintainers":[]}