{"id":5803569,"name":"google-github-actions/run-vertexai-notebook","ecosystem":"actions","description":"Execute notebooks and create links to their output files","homepage":"https://cloud.google.com/vertex-ai","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/google-github-actions/run-vertexai-notebook","keywords_array":["actions","artificial-intelligence","gcp","github-actions","google-cloud","google-cloud-platform","machine-learning","ml-notebooks","vertex-ai"],"namespace":"google-github-actions","versions_count":13,"first_release_published_at":"2022-06-16T19:40:10.000Z","latest_release_published_at":"2025-09-03T02:18:37.000Z","latest_release_number":"v1.1.3","last_synced_at":"2026-08-07T06:42:08.703Z","created_at":"2023-01-04T14:36:45.646Z","updated_at":"2026-08-07T06:42:08.703Z","registry_url":"https://github.com/google-github-actions/run-vertexai-notebook","install_command":null,"documentation_url":null,"metadata":{"name":"Vertex AI Notebook Review Action","description":"Execute notebooks and create links to their output files","inputs":{"gcs_source_bucket":{"description":"Google Cloud Storage bucket to store notebooks to be run by Vertex AI. e.g. \u003cproject-id\u003e/nbr/source","required":true},"gcs_output_bucket":{"description":"Google Cloud Storage bucket to store the results of the notebooks executed by Vertex AI. e.g. \u003cproject-id\u003e/nbr/output","required":true},"allowlist":{"description":"Comma separated list of files to run on Vertex AI. e.g. mynotebook.ipynb, somedir/**.pynb. It is expected that this is the output from an action like ```dorny/paths-filter```","required":true},"vertex_machine_type":{"description":"Type of Vertex AI machine to run notebooks on e.g. n1-standard-4","default":"n1-standard-4","required":false},"region":{"description":"Google Cloud region e.g. us-central1, us-east4","default":"us-central1","required":false},"add_comment":{"description":"Add a comment to an open PR as the final step - defaults to \"true\"","default":"true","required":false},"kernel_name":{"description":"Notebook kernel to use for the execution environment - defaults to python3","default":"python3","required":false},"vertex_container_name":{"description":"The base container image to use. Defaults to the basic Python container.","default":"gcr.io/deeplearning-platform-release/base-cu110:latest","required":false}},"runs":{"using":"composite","steps":[{"name":"stage-files","shell":"bash","env":{"allowlist":"${{ inputs.allowlist }}","dir":"./${{ github.sha }}"},"run":"set -x;\n\nmkdir -p ${dir};\nfor file in ${allowlist};\ndo\n  f2=$(echo ${file}|tr '/' '_');\n  cp ${file} ${dir}/${f2};\ndone;\necho \"notebooks=$(ls ${dir} | xargs)\" \u003e\u003e $GITHUB_OUTPUT"},{"name":"setup-cloud-sdk","uses":"google-github-actions/setup-gcloud@v2"},{"name":"upload-folder","uses":"google-github-actions/upload-cloud-storage@v2","with":{"path":"./${{ github.sha }}","destination":"${{ inputs.gcs_source_bucket }}","gzip":false,"headers":"content-type: application/octet-stream"}},{"name":"vertex-execution","shell":"bash","env":{"notebooks":"${{ inputs.allowlist }}","commit_sha":"${{ github.sha }}","output_location":"gs://${{ inputs.gcs_output_bucket }}","source_location":"gs://${{ inputs.gcs_source_bucket }}","machine_type":"${{ inputs.vertex_machine_type }}","region":"${{ inputs.region }}","kernel":"${{ inputs.kernel_name }}","container":"${{ inputs.vertex_container_name }}"},"run":"set -x;\necho '{\"jobs\": []}' \u003e jobs.json\n\nfor file in ${notebooks};\ndo\n  file=$(echo ${file}|tr '/' '_');\n  job_name=\"${commit_sha}:${file}\";\n  source_file=\"${source_location}/${commit_sha}/${file}\";\n  output_file=\"${output_location}/${commit_sha}/${file}\";\n\n  output=$(gcloud ai custom-jobs create \\\n     --format=json \\\n     --region=${region} \\\n     --display-name=\"${job_name}\" \\\n     --labels=commit_sha=${commit_sha} \\\n     --worker-pool-spec=machine-type=\"${machine_type}\",replica-count=\"1\",container-image-uri=\"${container}\" \\\n     --args=nbexecutor,--input-notebook=\"${source_file}\",--output-notebook=\"${output_file}\",--kernel-name=\"${kernel}\");\n\n  echo $output | jq -c \u003e training.json\n  jq '.jobs[.jobs | length] |= . + '$(cat training.json) jobs.json \u003e jobs_new.json\n  cat jobs_new.json | jq -c \u003e jobs.json\n\ndone;\necho \"name=training_jobs=$(cat jobs.json)\" \u003e\u003e $GITHUB_OUTPUT"},{"name":"add-comment","env":{"vertex_job_uri":"https://console.cloud.google.com/vertex-ai/locations","vertex_notebook_uri":"https://notebooks.cloud.google.com/view","region":"${{ inputs.region }}","add_comment":"${{ inputs.add_comment }}"},"uses":"actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea","with":{"script":"try {\n  if (process.env.add_comment.toLowerCase() !== 'true') {\n    return;\n  }\n  const fs = require('fs');\n\n  const region = process.env.region;\n  const notebookUri = process.env.vertex_notebook_uri;\n  const vertexUri = process.env.vertex_job_uri;\n  const project = process.env.GCLOUD_PROJECT;\n  const jsonStr = fs.readFileSync('jobs.json');\n\n  const data = JSON.parse(jsonStr);\n  const jid_re = /\\/([0-9]+)$/;\n  for (const ix in data.jobs) {\n    const job = data.jobs[ix];\n    const nbName = job.displayName.split(\":\")[1];\n    const jobId = job.name.match(jid_re)[0].replace(\"/\", \"\");\n    const outFile = job.jobSpec.workerPoolSpecs[0].containerSpec.args.filter((a) =\u003e a.startsWith(\"--output-notebook=gs://\")).map((a) =\u003e a.replace(\"--output-notebook=gs://\", \"\"))[0];\n    const jobUrl = encodeURI(`${vertexUri}/${region}/training/${jobId}?project=${project}`);\n    const nbUrl = encodeURI(`${notebookUri}/${outFile}`);\n    const message = `Automatic running of notebook **${nbName}** underway.\n\n    You can review the status of the job within Vertex AI: [Job ${jobId}](${jobUrl})\n\n    Once complete the notebook with output cells will be available to view [${nbName}](${nbUrl})`;\n    await github.rest.issues.createComment({\n      issue_number: context.issue.number,\n      owner: context.repo.owner,\n      repo: context.repo.repo,\n      body: message,\n    });\n  }\n} catch(err) {\n  core.setFailed(`Failed to generate add comment with Vertex AI links: ${err}`);\n}\n"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":37792195,"uuid":"501339908","full_name":"google-github-actions/run-vertexai-notebook","owner":"google-github-actions","description":"A GitHub Action for running a Google Cloud Vertex AI notebook.","archived":false,"fork":false,"pushed_at":"2025-09-03T02:18:54.000Z","size":62,"stargazers_count":33,"open_issues_count":0,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-08-06T23:04:18.020Z","etag":null,"topics":["actions","artificial-intelligence","gcp","github-actions","google-cloud","google-cloud-platform","machine-learning","ml-notebooks","vertex-ai"],"latest_commit_sha":null,"homepage":"https://cloud.google.com/vertex-ai","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-08T17:01:44.000Z","updated_at":"2026-08-01T17:30:36.000Z","dependencies_parsed_at":"2023-01-04T21:31:27.148Z","dependency_job_id":"1e1a3e7b-eb71-43f8-acb1-e94155b80248","html_url":"https://github.com/google-github-actions/run-vertexai-notebook","commit_stats":{"total_commits":23,"total_committers":5,"mean_commits":4.6,"dds":0.6956521739130435,"last_synced_commit":"0cde94af43963508b52276a6232afaed1bd05fa8"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google-github-actions","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/sbom","scorecard":{"id":435967,"data":{"date":"2025-08-11","repo":{"name":"github.com/google-github-actions/run-vertexai-notebook","commit":"acd78f75c1e27e147f3281dfaf3479f9e8da7d05"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":6.3,"checks":[{"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":"Code-Review","score":9,"reason":"Found 29/30 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":"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":"Pinned-Dependencies","score":2,"reason":"dependency not pinned by hash detected -- score normalized to 2","details":["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/run-vertexai-notebook/draft-release.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/run-vertexai-notebook/release.yml/main?enable=pin","Info:   2 out of   2 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   2 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"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":"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":"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","Info: jobLevel 'contents' permission set to 'read': .github/workflows/publish.yml:13","Warn: jobLevel 'packages' permission set to 'write': .github/workflows/publish.yml:15","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/release.yml:14","Warn: jobLevel 'packages' permission set to 'write': .github/workflows/release.yml:15","Warn: no topLevel permission defined: .github/workflows/draft-release.yml:1","Warn: no topLevel permission defined: .github/workflows/publish.yml:1","Warn: no topLevel permission defined: .github/workflows/release.yml:1"],"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":"Maintained","score":2,"reason":"3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: 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":"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":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 2 commits out of 30 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-19T04:42:30.091Z","repository_id":37792195,"created_at":"2025-08-19T04:42:30.091Z","updated_at":"2025-08-19T04:42:30.091Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36363665,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-06T04:43:03.162Z","status":"online","status_checked_at":"2026-08-07T02:00:06.708Z","response_time":57,"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":"v1.1.3","sha":"9322561b61e4c720ac7868db5450409acdfb0131","kind":"commit","published_at":"2025-09-03T02:18:37.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1.1.3","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1.1.3","dependencies_parsed_at":"2025-10-16T09:25:19.609Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.3/manifests"},{"name":"v1.1.2","sha":"acd78f75c1e27e147f3281dfaf3479f9e8da7d05","kind":"commit","published_at":"2025-07-18T22:34:09.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1.1.2","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1.1.2","dependencies_parsed_at":"2025-07-25T07:13:54.437Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"cdcf5721ae3bb621f581661cfe9aa03397b30ab1","kind":"commit","published_at":"2025-02-01T14:13:29.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1.1.1","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1.1.1","dependencies_parsed_at":null,"dependency_job_id":"96e88cf4-926e-4d97-923e-112dcd92edce","purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"e71afc3f2ef954ad746ea4eaf1e0e16a742e0daa","kind":"commit","published_at":"2025-01-17T20:32:13.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1.1.0","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1.1.0","dependencies_parsed_at":"2025-01-31T04:59:11.171Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"f02a5b26f19a638caa8e4390608fb8b29184d49f","kind":"commit","published_at":"2024-11-02T15:03:06.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1.0.0","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1.0.0","dependencies_parsed_at":"2024-11-04T06:33:44.653Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1.0.0/manifests"},{"name":"v1","sha":"f02a5b26f19a638caa8e4390608fb8b29184d49f","kind":"commit","published_at":"2024-11-02T15:03:06.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v1","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v1","dependencies_parsed_at":"2024-11-04T06:33:44.650Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v1/manifests"},{"name":"v0.0.6","sha":"2d5d8e8a70b5f48451022301f5d35b3db8c69b90","kind":"commit","published_at":"2024-10-30T00:11:15.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.6","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.6","dependencies_parsed_at":"2024-11-01T06:32:12.604Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.6/manifests"},{"name":"v0.0.5","sha":"c1de901920cb7134a9ca07fc8f24ce8e89b89f34","kind":"commit","published_at":"2023-05-22T12:21:10.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.5","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.5","dependencies_parsed_at":"2023-06-02T00:26:12.021Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.5/manifests"},{"name":"v0.0.4","sha":"0cde94af43963508b52276a6232afaed1bd05fa8","kind":"commit","published_at":"2022-10-14T20:27:19.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.4","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.4","dependencies_parsed_at":"2023-06-01T11:02:00.361Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.4/manifests"},{"name":"v0.0.3","sha":"8e3106feb5766bba4e623142b1e937137dfb77cc","kind":"commit","published_at":"2022-09-15T18:17:06.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.3","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.3","dependencies_parsed_at":"2023-06-01T11:02:00.717Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"fb3bb600399fc97765fd7e8e98373cecb9e6a530","kind":"commit","published_at":"2022-09-09T16:32:34.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.2","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.2","dependencies_parsed_at":"2023-06-01T11:02:01.089Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.2/manifests"},{"name":"v0.0.1","sha":"31c2456386e704c0919af2a8dcb3bf6ac149e356","kind":"commit","published_at":"2022-06-16T19:40:10.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0.0.1","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-31T08:02:22.091Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0.0.1/manifests"},{"name":"v0","sha":"31c2456386e704c0919af2a8dcb3bf6ac149e356","kind":"commit","published_at":"2022-06-16T19:40:10.000Z","download_url":"https://codeload.github.com/google-github-actions/run-vertexai-notebook/tar.gz/v0","html_url":"https://github.com/google-github-actions/run-vertexai-notebook/releases/tag/v0","dependencies_parsed_at":"2023-05-31T08:02:22.388Z","dependency_job_id":null,"purl":"pkg:github/google-github-actions/run-vertexai-notebook@v0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/tags/v0/manifests"}]},"repo_metadata_updated_at":"2026-08-07T06:42:08.411Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":42.858974907023466,"dependent_packages_count":0.0,"stargazers_count":14.200829307912624,"forks_count":12.700380455691873,"average":17.44004616765699},"purl":"pkg:githubactions/google-github-actions/run-vertexai-notebook","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/google-github-actions/run-vertexai-notebook","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/google-github-actions/run-vertexai-notebook","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/google-github-actions/run-vertexai-notebook/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-03T12:01:29.933Z","issues_count":6,"pull_requests_count":33,"avg_time_to_close_issue":10326815.0,"avg_time_to_close_pull_request":46264.51515151515,"issues_closed_count":6,"pull_requests_closed_count":33,"pull_request_authors_count":5,"issue_authors_count":3,"avg_comments_per_issue":1.3333333333333333,"avg_comments_per_pull_request":0.15151515151515152,"merged_pull_requests_count":31,"bot_issues_count":0,"bot_pull_requests_count":2,"past_year_issues_count":1,"past_year_pull_requests_count":11,"past_year_avg_time_to_close_issue":26.0,"past_year_avg_time_to_close_pull_request":8093.363636363636,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":11,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":11,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-github-actions%2Frun-vertexai-notebook/issues","maintainers":[{"login":"sethvargo","count":11,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"},{"login":"google-github-actions-bot","count":10,"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":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sethvargo"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/google-github-actions%2Frun-vertexai-notebook/codemeta","maintainers":[]}