{"id":5800844,"name":"cloudposse/github-action-docker-build-push","ecosystem":"actions","description":"Simple Docker build and push action","homepage":"https://cloudposse.com/accelerate","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/cloudposse/github-action-docker-build-push","keywords_array":[],"namespace":"cloudposse","versions_count":27,"first_release_published_at":"2022-08-17T16:44:13.000Z","latest_release_published_at":"2024-12-13T15:35:37.000Z","latest_release_number":"v1.17.2","last_synced_at":"2026-03-17T12:17:24.685Z","created_at":"2023-01-04T12:30:38.225Z","updated_at":"2026-03-17T12:17:24.686Z","registry_url":"https://github.com/cloudposse/github-action-docker-build-push","install_command":null,"documentation_url":null,"metadata":{"name":"Docker build and push","description":"Simple Docker build and push action","author":"hello@cloudposse.com","branding":{"icon":"box","color":"white"},"inputs":{"allow":{"description":"List of extra privileged entitlement (e.g., network.host,security.insecure)","required":false},"network":{"description":"Set the networking mode for the RUN instructions during build","required":false},"build-contexts":{"description":"List of additional build contexts (e.g., name=path)","required":false},"buildkitd-flags":{"description":"BuildKit daemon flags","default":"--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host","required":false},"driver-opts":{"description":"List of additional driver-specific options. (eg. image=moby/buildkit:master)","required":false,"default":"image=public.ecr.aws/vend/moby/buildkit:buildx-stable-1"},"binfmt-image":{"description":"Binfmt image","required":false,"default":"public.ecr.aws/eks-distro-build-tooling/binfmt-misc:qemu-v7.0.0"},"workdir":{"description":"Working directory","required":false,"default":"./"},"file":{"description":"Dockerfile name","required":false,"default":"Dockerfile"},"build-args":{"description":"List of build-time variables","required":false},"organization":{"description":"Organization","required":true},"repository":{"description":"Repository","required":true},"registry":{"description":"Docker registry","required":true},"target":{"description":"Sets the target stage to build","required":false,"default":""},"platforms":{"description":"List of target platforms for build (e.g. linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,etc)","required":false,"default":"linux/amd64"},"provenance":{"description":"Generate provenance attestation for the build","required":false},"image_name":{"description":"Image name (excluding registry). Defaults to {{$organization/$repository}}.","required":false,"default":""},"login":{"description":"Docker login","required":false,"default":""},"password":{"description":"Docker password","required":false,"default":""},"cache-from":{"description":"List of external cache sources for buildx (e.g., user/app:cache, type=local,src=path/to/dir)","required":false,"default":"type=gha"},"cache-to":{"description":"List of cache export destinations for buildx (e.g., user/app:cache, type=local,dest=path/to/dir)","required":false,"default":"type=gha,mode=max"},"no-cache":{"description":"Send the --no-cache flag to the docker build process","required":false,"default":"false"},"ssh":{"description":"List of SSH agent socket or keys to expose to the build","required":false},"tags":{"description":"List of tags (supports https://github.com/docker/metadata-action#tags-input)","required":false},"secrets":{"description":"List of secrets to expose to the build (e.g., key=string, GIT_AUTH_TOKEN=mytoken)","required":false},"secret-files":{"description":"List of secret files to expose to the build (e.g., key=filename, MY_SECRET=./secret.txt)","required":false},"docker-metadata-pr-head-sha":{"description":"Set to `true` to tag images with the PR HEAD SHA instead of the merge commit SHA within pull requests.","required":false,"default":"false"},"inspect":{"description":"Set to `true` will pull and inspect the image and output it to the step summary.","required":false,"default":"false"},"debug":{"description":"Enable debug mode","required":false,"default":"false"}},"outputs":{"image":{"description":"Docker image name","value":"${{ inputs.registry }}/${{ steps.image_name.outputs.image_name }}"},"tag":{"description":"Docker image tag","value":"${{ steps.tag.outputs.output }}"},"metadata":{"description":"Docker image metadata","value":"${{ steps.get-metadata.outputs.metadata }}"}},"runs":{"using":"composite","steps":[{"name":"Set image name","id":"image_name","shell":"bash","run":"if [ \"${{ inputs.image_name }}\" = \"\" ]; then\n  echo 'image_name=${{ inputs.organization }}/${{ inputs.repository }}' \u003e\u003e \"$GITHUB_OUTPUT\"\nelse\n  echo 'image_name=${{inputs.image_name}}' \u003e\u003e \"$GITHUB_OUTPUT\"\nfi\n"},{"name":"Docker meta","id":"meta","uses":"docker/metadata-action@v5","env":{"DOCKER_METADATA_PR_HEAD_SHA":"${{ inputs.docker-metadata-pr-head-sha }}"},"with":{"images":"${{ inputs.registry }}/${{ steps.image_name.outputs.image_name }}\n","tags":"type=sha\ntype=schedule\ntype=ref,event=branch\ntype=ref,event=pr\ntype=semver,pattern={{version}}\ntype=semver,pattern={{major}}.{{minor}}\ntype=semver,pattern={{major}}\ntype=raw,value=latest,enable={{is_default_branch}}\ntype=sha,format=long,priority=1001\n${{ inputs.tags }}\n","labels":"org.opencontainers.image.source=https://github.com/${{ inputs.organization }}/${{ inputs.repository }}\n"}},{"name":"Install jq 1.6","uses":"dcarbone/install-jq-action@v3.0.1","with":{"version":1.6,"force":"true"}},{"uses":"cloudposse/github-action-jq@0.4.0","id":"tag","with":{"compact":true,"raw-output":true,"input":"${{ steps.meta.outputs.json }}","script":".tags | ( first / \":\") | .[length -1]"}},{"name":"Set up Docker Context for Buildx","shell":"bash","id":"buildx-context","run":"docker context create buildx-context || true\n"},{"name":"Set up QEMU","uses":"docker/setup-qemu-action@v3","with":{"image":"${{ inputs.binfmt-image }}"}},{"name":"Set up Docker Buildx","uses":"docker/setup-buildx-action@v3","with":{"endpoint":"buildx-context","buildkitd-flags":"${{ inputs.debug == 'true' \u0026\u0026 '--debug' || '' }} ${{ inputs.buildkitd-flags }}","driver-opts":"${{ inputs.driver-opts }}"}},{"name":"Login","uses":"docker/login-action@v3","if":"${{ contains(inputs.registry, '.amazonaws.com') || ( inputs.login != '' \u0026\u0026 inputs.password != '' ) }}","with":{"registry":"${{ inputs.registry }}","username":"${{ inputs.login }}","password":"${{ inputs.password }}"}},{"name":"Build and push Docker images","uses":"docker/build-push-action@v5","id":"docker-build-push-action","with":{"allow":"${{ inputs.allow }}","network":"${{ inputs.network }}","context":"${{ inputs.workdir }}","file":"${{ inputs.workdir }}/${{ inputs.file }}","pull":true,"push":true,"ssh":"${{ inputs.ssh }}","build-args":"${{ inputs.build-args }}","build-contexts":"${{ inputs.build-contexts }}","cache-from":"${{ inputs.cache-from }}","cache-to":"${{ inputs.cache-to }}","no-cache":"${{ inputs.no-cache }}","tags":"${{ steps.meta.outputs.tags }}","target":"${{ inputs.target }}","labels":"${{ steps.meta.outputs.labels }}","platforms":"${{ inputs.platforms }}","provenance":"${{ inputs.provenance }}","secrets":"${{ inputs.secrets }}","secret-files":"${{ inputs.secret-files }}"}},{"name":"Get Metadata","id":"get-metadata","shell":"bash","run":"metadata=$(echo '${{ steps.docker-build-push-action.outputs.metadata }}' | jq -c)\necho \"metadata=$metadata\" \u003e\u003e $GITHUB_OUTPUT\necho \"## Docker Image Metadata\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```json' \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"$metadata\" | jq \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```' \u003e\u003e $GITHUB_STEP_SUMMARY\n"},{"name":"Docker Inspect","id":"inspect","if":"${{ inputs.inspect }} == 'true'","shell":"bash","run":"docker pull \"${{ inputs.registry }}/${{ steps.image_name.outputs.image_name }}:${{ steps.tag.outputs.output }}\"\ndocker inspect \"${{ inputs.registry }}/${{ steps.image_name.outputs.image_name }}:${{ steps.tag.outputs.output }}\" \u003e inspect.json\nmetadata=$(jq -c \u003c inspect.json)\necho \"metadata=$metadata\" \u003e\u003e $GITHUB_OUTPUT\necho \"## Docker Image Inspect\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```json' \u003e\u003e $GITHUB_STEP_SUMMARY\ncat inspect.json \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```' \u003e\u003e $GITHUB_STEP_SUMMARY\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":59335958,"uuid":"525839649","full_name":"cloudposse/github-action-docker-build-push","owner":"cloudposse","description":"Simple docker build action","archived":false,"fork":false,"pushed_at":"2025-09-25T17:05:37.000Z","size":1051,"stargazers_count":11,"open_issues_count":8,"forks_count":11,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-09-25T19:18:07.535Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cloudposse.com/accelerate","language":"Dockerfile","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/cloudposse.png","metadata":{"funding":{"github":"cloudposse"},"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-17T14:54:40.000Z","updated_at":"2025-09-15T20:01:45.000Z","dependencies_parsed_at":"2024-01-01T05:20:26.426Z","dependency_job_id":"76b7651f-4dec-4da7-8b9b-f50f4a9dd2f8","html_url":"https://github.com/cloudposse/github-action-docker-build-push","commit_stats":{"total_commits":27,"total_committers":4,"mean_commits":6.75,"dds":0.5925925925925926,"last_synced_commit":"0a4b450e3bb14372b03d4bd13a338f8fd2db9d2c"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":"cloudposse-github-actions/composite-template","purl":"pkg:github/cloudposse/github-action-docker-build-push","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/sbom","scorecard":{"id":293170,"data":{"date":"2025-08-11","repo":{"name":"github.com/cloudposse/github-action-docker-build-push","commit":"947b57f7124153af03e75f2c6e4f3bb1a287576f"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.6,"checks":[{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":1,"reason":"2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"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":4,"reason":"Found 10/22 approved changesets -- score normalized to 4","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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: topLevel 'contents' permission set to 'write': .github/workflows/branch.yml:20","Warn: topLevel 'actions' permission set to 'write': .github/workflows/branch.yml:21","Warn: topLevel 'contents' permission set to 'write': .github/workflows/release.yml:8","Warn: no topLevel permission defined: .github/workflows/test-docker-build-complex.yml:1","Warn: no topLevel permission defined: .github/workflows/test-docker-build-multi-platform.yml:1","Warn: no topLevel permission defined: .github/workflows/test-docker-build.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/branch.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/branch.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-docker-build-complex.yml:22: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-complex.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-complex.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-complex.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-complex.yml:45: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-complex.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-docker-build-multi-platform.yml:22: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-multi-platform.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-multi-platform.yml:46: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-multi-platform.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-multi-platform.yml:51: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-multi-platform.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-multi-platform.yml:56: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-multi-platform.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build-multi-platform.yml:62: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build-multi-platform.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-docker-build.yml:22: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build.yml:37: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-docker-build.yml:42: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-docker-build-push/test-docker-build.yml/main?enable=pin","Warn: containerImage not pinned by hash: test/Dockerfile:1: pin your Docker image by updating nginx:1.23.0-alpine to nginx:1.23.0-alpine@sha256:4a846cc240449c53c8ae24269ba6bcaee5167d8ad75cd2a8d8ba422b7c726979","Warn: containerImage not pinned by hash: test/custom/Dockerfile_complex:1: pin your Docker image by updating nginx:1.23.0-alpine to nginx:1.23.0-alpine@sha256:4a846cc240449c53c8ae24269ba6bcaee5167d8ad75cd2a8d8ba422b7c726979","Warn: containerImage not pinned by hash: test/custom/Dockerfile_multi_platform:1: pin your Docker image by updating nginx:1.23.0-alpine to nginx:1.23.0-alpine@sha256:4a846cc240449c53c8ae24269ba6bcaee5167d8ad75cd2a8d8ba422b7c726979","Info:   0 out of   3 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  10 third-party GitHubAction dependencies pinned","Info:   0 out of   3 containerImage 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/cloudposse/.github/SECURITY.md:1","Info: Found linked content: github.com/cloudposse/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/cloudposse/.github/SECURITY.md:1","Info: Found text in security policy: github.com/cloudposse/.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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 26 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":"Branch-Protection","score":1,"reason":"branch protection is not maximal on development and all release branches","details":["Warn: branch protection not enabled for branch 'release/v0'","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'","Info: 'stale review dismissal' is required to merge on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Warn: codeowners review is required - but no codeowners file found in repo","Info: 'last push approval' is required to merge on branch 'main'","Warn: no status checks found to merge onto branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}}]},"last_synced_at":"2025-08-17T18:49:11.295Z","repository_id":59335958,"created_at":"2025-08-17T18:49:11.295Z","updated_at":"2025-08-17T18:49:11.295Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278366664,"owners_count":25975095,"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-04T02:00:05.491Z","response_time":63,"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":"cloudposse","name":"Cloud Posse","uuid":"16398900","kind":"organization","description":"DevOps Accelerator for AWS Infrastructure  🙌  Hire Us!  \u003chttps://cloudposse.com/services\u003e","email":"hello@cloudposse.com","website":"https://cloudposse.com/","location":"United States of America","twitter":"cloudposse","company":null,"icon_url":"https://avatars.githubusercontent.com/u/16398900?v=4","repositories_count":258,"last_synced_at":"2025-09-18T16:06:38.568Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"cloudposse"}},"html_url":"https://github.com/cloudposse","funding_links":["https://github.com/sponsors/cloudposse"],"total_stars":16688,"followers":1640,"following":0,"created_at":"2022-11-03T23:59:39.987Z","updated_at":"2025-09-18T16:06:38.568Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse/repositories"},"tags":[{"name":"v1.17.2","sha":"aa16c1c8d4932b7ab51c5e5bae506114001dc38b","kind":"commit","published_at":"2024-12-13T15:35:37.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1.17.2","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1.17.2","dependencies_parsed_at":null,"dependency_job_id":"ef36000d-b98d-4a0c-9cc1-f1bec550a78d","purl":"pkg:github/cloudposse/github-action-docker-build-push@v1.17.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.2/manifests"},{"name":"v1.17.1","sha":"fe80d7d90fbdfe31d3e3f126b4bae92b790a445d","kind":"commit","published_at":"2024-12-03T17:16:55.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1.17.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1.17.1","dependencies_parsed_at":"2024-12-05T04:27:09.286Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@v1.17.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.1/manifests"},{"name":"v1.17.1","sha":"fe80d7d90fbdfe31d3e3f126b4bae92b790a445d","kind":"commit","published_at":"2024-12-03T17:16:55.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1.17.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1.17.1","dependencies_parsed_at":"2024-12-05T04:27:09.283Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@v1.17.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.1/manifests"},{"name":"v1","sha":"fe80d7d90fbdfe31d3e3f126b4bae92b790a445d","kind":"commit","published_at":"2024-12-03T17:16:55.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1","dependencies_parsed_at":"2024-12-05T04:27:09.278Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1/manifests"},{"name":"v1.17.0","sha":"ebc5e80a31a33a5c49f6e81335dc440f308a1ec8","kind":"commit","published_at":"2024-12-03T14:36:06.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1.17.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1.17.0","dependencies_parsed_at":"2024-12-05T04:27:09.284Z","dependency_job_id":"a0975c0c-a6d5-44cf-baf8-a2faf59be9ef","purl":"pkg:github/cloudposse/github-action-docker-build-push@v1.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.17.0/manifests"},{"name":"v1.16.1","sha":"90cbedae5dd30993befec87b9a7df87f28aadaef","kind":"commit","published_at":"2024-12-03T14:32:03.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v1.16.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v1.16.1","dependencies_parsed_at":"2024-12-05T04:27:09.299Z","dependency_job_id":"4ecad710-9033-4801-a148-f1303f16fae7","purl":"pkg:github/cloudposse/github-action-docker-build-push@v1.16.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v1.16.1/manifests"},{"name":"1.16.0","sha":"51728c18e98e68a3365054e724b186912d8cbe16","kind":"commit","published_at":"2024-04-26T16:32:17.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.16.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.16.0","dependencies_parsed_at":"2024-04-28T04:09:15.856Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@1.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.16.0/manifests"},{"name":"1.15.1","sha":"22eced273985bb2f4ae6a3441d335d9626fd3a78","kind":"commit","published_at":"2024-03-19T20:21:29.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.15.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.15.1","dependencies_parsed_at":"2024-04-21T05:24:55.996Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@1.15.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.15.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.15.1/manifests"},{"name":"1.15.0","sha":"dd2a28dbfa9485be9f2e15080a976b36bbdfe7ce","kind":"commit","published_at":"2024-02-09T00:04:58.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.15.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.15.0","dependencies_parsed_at":"2024-02-12T05:05:42.007Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@1.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.15.0/manifests"},{"name":"1.14.0","sha":"f1139911cacb0c4e6a2a79ae5c215684e87fd8fb","kind":"commit","published_at":"2023-11-03T20:36:11.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.14.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.14.0","dependencies_parsed_at":"2023-11-08T07:31:51.566Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@1.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.14.0/manifests"},{"name":"1.13.1","sha":"0192482637b94d39a2e76d4b01ab6f626c79e7cc","kind":"commit","published_at":"2023-07-18T18:42:22.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.13.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.13.1","dependencies_parsed_at":"2023-07-20T04:08:49.125Z","dependency_job_id":"19278da6-7a0a-4fab-bbae-67dd0b59e554","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.13.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.13.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.13.1/manifests"},{"name":"1.13.0","sha":"c4633c5825d2f777197c217e9c8f469cabc6dc63","kind":"commit","published_at":"2023-06-01T15:38:38.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.13.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.13.0","dependencies_parsed_at":"2023-06-02T11:54:46.840Z","dependency_job_id":"763ef69a-1208-445b-b5c5-2024e985c649","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.13.0/manifests"},{"name":"1.12.0","sha":"2cab1c5aa49dc1647d3f8005c6631331c6815f42","kind":"commit","published_at":"2023-05-11T16:01:37.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.12.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.12.0","dependencies_parsed_at":"2023-06-02T00:07:42.821Z","dependency_job_id":"3388c4c4-1985-4e22-95be-162b4c8183ad","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.12.0/manifests"},{"name":"1.11.0","sha":"0ad11079718e48c71fb1a5a33ffa445af7d54bd0","kind":"commit","published_at":"2023-04-13T18:20:10.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.11.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.11.0","dependencies_parsed_at":"2023-06-02T00:07:42.737Z","dependency_job_id":"271bedea-f28e-4d20-ad7e-ba6bfd765884","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.11.0/manifests"},{"name":"1.10.0","sha":"ac00b082e0932ab898763fc7ed1af62b094c138c","kind":"commit","published_at":"2023-04-08T08:47:43.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.10.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.10.0","dependencies_parsed_at":"2023-06-02T00:07:42.894Z","dependency_job_id":"afcbc944-223e-4cc2-b8dc-d68ad349bcfb","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.10.0/manifests"},{"name":"1.9.0","sha":"e2e648a687d73800bb0cfaa098ec8bf60f0bd4ac","kind":"commit","published_at":"2022-11-29T18:40:08.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.9.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.9.0","dependencies_parsed_at":"2023-06-01T10:56:31.542Z","dependency_job_id":"c96e4f9a-44c3-4412-83dc-7d3de90a3aaf","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.9.0/manifests"},{"name":"1.8.0","sha":"2914a68026b3bdbe8fe951f4c1be9706ee345574","kind":"commit","published_at":"2022-11-23T20:36:24.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.8.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.8.0","dependencies_parsed_at":"2023-06-01T10:56:32.495Z","dependency_job_id":"070c7593-686e-4de2-a322-1c858a4a35e5","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.8.0/manifests"},{"name":"1.7.0","sha":"dd141973a43f5b718b7d45f620b404e42ca11135","kind":"commit","published_at":"2022-11-23T20:24:35.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.7.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.7.0","dependencies_parsed_at":"2023-06-01T10:56:33.396Z","dependency_job_id":"60e6f460-a99e-4b95-a762-263bf55314fd","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.7.0/manifests"},{"name":"1.6.0","sha":"280b7eefb046bd3231fbaa0a3c42c89bd57fde92","kind":"commit","published_at":"2022-11-07T19:18:57.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.6.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.6.0","dependencies_parsed_at":"2023-06-01T10:56:34.279Z","dependency_job_id":"e0f58dc1-bafe-4f02-a2e5-599606797a3e","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.6.0/manifests"},{"name":"1.5.0","sha":"e4d9b2b8176b18f45325e0dae346e7c845373c05","kind":"commit","published_at":"2022-09-19T12:34:30.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.5.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.5.0","dependencies_parsed_at":"2023-05-31T18:26:33.266Z","dependency_job_id":"4d236dfc-069e-4012-af4a-11ce028d7a39","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.5.0/manifests"},{"name":"1.4.0","sha":"1ea8ae59e1bbb28964c958c52226f6bf39937b74","kind":"commit","published_at":"2022-09-16T17:30:12.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.4.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.4.0","dependencies_parsed_at":"2023-05-31T18:26:34.244Z","dependency_job_id":"f1a05add-4b4e-4f3b-b5c8-1529d87b1121","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.4.0/manifests"},{"name":"1.3.0","sha":"6efd2205ed9543453d47191d8d2445769316364e","kind":"commit","published_at":"2022-09-15T16:08:04.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.3.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.3.0","dependencies_parsed_at":"2023-05-31T18:26:35.046Z","dependency_job_id":"dfcbcc05-cb55-4ae3-a979-c934d5698672","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.3.0/manifests"},{"name":"1.2.0","sha":"8f5926c16d2d7b41961460fa0d4dcc404d756582","kind":"commit","published_at":"2022-09-15T10:29:37.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.2.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.2.0","dependencies_parsed_at":"2023-05-30T22:06:56.681Z","dependency_job_id":"eb3aa8c0-ec1a-44a1-b4d2-134fb6912d6b","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.2.0/manifests"},{"name":"1.1.0","sha":"10527a4ebff0bdb4a17418ba2d3d1a2277fb4d0d","kind":"commit","published_at":"2022-09-15T09:55:45.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.1.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.1.0","dependencies_parsed_at":"2023-05-30T22:06:57.427Z","dependency_job_id":"aab42e10-0120-4580-b1b4-e7b52c6c45c8","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.1.0/manifests"},{"name":"1.0.0","sha":"ce09a36c6eb215b64d53f1d2b8b4e6fa5c1e9150","kind":"commit","published_at":"2022-09-14T19:54:28.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/1.0.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/1.0.0","dependencies_parsed_at":"2023-05-30T21:54:39.652Z","dependency_job_id":"cb77ad50-a048-44a5-be7e-1bb6ff412578","purl":"pkg:github/cloudposse/github-action-docker-build-push@1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/1.0.0/manifests"},{"name":"v0","sha":"e0e857281214fffff1512419d3859e87d30f3abc","kind":"commit","published_at":"2022-09-12T22:37:39.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/v0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/v0","dependencies_parsed_at":"2024-12-05T04:27:08.962Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-docker-build-push@v0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/v0/manifests"},{"name":"0.1.1","sha":"e0e857281214fffff1512419d3859e87d30f3abc","kind":"commit","published_at":"2022-09-12T22:37:39.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/0.1.1","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/0.1.1","dependencies_parsed_at":"2023-05-30T21:54:40.353Z","dependency_job_id":"e84e43a7-5626-4de5-abc6-74cc800297b8","purl":"pkg:github/cloudposse/github-action-docker-build-push@0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/0.1.1/manifests"},{"name":"0.1.0","sha":"ce1ae180a5848c8c64673e4ee4fc67d30d33e77f","kind":"commit","published_at":"2022-08-17T16:44:13.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-docker-build-push/tar.gz/0.1.0","html_url":"https://github.com/cloudposse/github-action-docker-build-push/releases/tag/0.1.0","dependencies_parsed_at":"2023-05-30T21:54:41.009Z","dependency_job_id":"3912796a-e982-47c4-9206-0fd177e26361","purl":"pkg:github/cloudposse/github-action-docker-build-push@0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/tags/0.1.0/manifests"}]},"repo_metadata_updated_at":"2025-10-04T20:22:29.396Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":2,"rankings":{"downloads":null,"dependent_repos_count":20.469745475292402,"dependent_packages_count":0.0,"stargazers_count":17.674477597742335,"forks_count":9.59611970580776,"docker_downloads_count":null,"average":11.935085694710624},"purl":"pkg:githubactions/cloudposse/github-action-docker-build-push","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/cloudposse/github-action-docker-build-push","docker_dependents_count":1,"docker_downloads_count":62,"usage_url":"https://repos.ecosyste.ms/usage/actions/cloudposse/github-action-docker-build-push","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/cloudposse/github-action-docker-build-push/dependencies","status":null,"funding_links":["https://github.com/sponsors/cloudposse"],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-27T13:27:54.654Z","issues_count":10,"pull_requests_count":89,"avg_time_to_close_issue":25015802.6,"avg_time_to_close_pull_request":3430248.3827160494,"issues_closed_count":5,"pull_requests_closed_count":81,"pull_request_authors_count":14,"issue_authors_count":8,"avg_comments_per_issue":0.6,"avg_comments_per_pull_request":0.2808988764044944,"merged_pull_requests_count":68,"bot_issues_count":1,"bot_pull_requests_count":28,"past_year_issues_count":2,"past_year_pull_requests_count":16,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":377098.77777777775,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":9,"past_year_pull_request_authors_count":6,"past_year_issue_authors_count":2,"past_year_avg_comments_per_issue":0.5,"past_year_avg_comments_per_pull_request":0.25,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":8,"past_year_merged_pull_requests_count":8,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-docker-build-push/issues","maintainers":[{"login":"goruha","count":17,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/goruha"},{"login":"cloudpossebot","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cloudpossebot"},{"login":"osterman","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"},{"login":"Benbentwo","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Benbentwo"},{"login":"korenyoni","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/korenyoni"}],"active_maintainers":[{"login":"goruha","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/goruha"},{"login":"korenyoni","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/korenyoni"},{"login":"osterman","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-docker-build-push/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-docker-build-push/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-docker-build-push/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-docker-build-push/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-docker-build-push/codemeta","maintainers":[]}