{"id":6246868,"name":"hashicorp/actions-packaging-linux","ecosystem":"actions","description":"Packages binaries using nfpm.","homepage":"","licenses":"mpl-2.0","normalized_licenses":["MPL-2.0"],"repository_url":"https://github.com/hashicorp/actions-packaging-linux","keywords_array":["crt"],"namespace":"hashicorp","versions_count":13,"first_release_published_at":"2021-08-27T11:34:08.000Z","latest_release_published_at":"2026-04-21T09:20:35.000Z","latest_release_number":"v1","last_synced_at":"2026-08-30T13:29:29.549Z","created_at":"2023-02-03T00:02:20.268Z","updated_at":"2026-08-30T20:14:36.491Z","registry_url":"https://github.com/hashicorp/actions-packaging-linux","install_command":null,"documentation_url":null,"metadata":{"name":"build-linux-packages","author":"Kyle Penfound \u003ckpenfound@hashicorp.com\u003e","description":"Packages binaries using nfpm.","branding":{"icon":"package","color":"purple"},"inputs":{"name":{"description":"Product name.","default":"","required":true},"arch":{"description":"Build architecture.","default":"","required":true},"version":{"description":"Product semver version.","default":"","required":true},"maintainer":{"description":"Maintainer name.","default":"","required":false},"vendor":{"description":"Vendor name","default":"HashiCorp","required":false},"description":{"description":"Product description.","default":"","required":false},"homepage":{"description":"Product homepage.","default":"","required":false},"license":{"description":"Product license.","default":"","required":false},"binary":{"description":"Binary location to package.","default":"","required":false},"bin_path":{"description":"Path to install the binary at","default":"/usr/bin","required":false},"file_permissions":{"description":"File permissions applied to all files in the package; specify in yaml/octal format: `0o022`; if empty, permissions are unmodified.","default":"","required":false},"user_owner":{"description":"The user name or ID that should own the files in the package; e.g.: root","default":"","required":false},"group_owner":{"description":"The group name or ID that should own the files in the package; e.g.: root","default":"","required":false},"config_dir":{"description":"Directory of configs in desired filesystem structure.","default":"","required":false},"deb_depends":{"description":"Comma-separated list of deb dependencies.  These prerequistes are mandatory at package install-time.","default":"","required":false},"deb_recommends":{"description":"Comma-separated list of deb packages recommended to also be installed.  These packages are optional at package install-time.","default":"","required":false},"rpm_depends":{"description":"Comma-separated list of rpm dependencies.  These prerequistes are mandatory at package install-time.","default":"","required":false},"rpm_recommends":{"description":"Comma-separated list of rpm packages recommended to also be installed.  These packages are optional at package install-time.","default":"","required":false},"preinstall":{"description":"Preinstall script location.","default":"","required":false},"postinstall":{"description":"Postinstall script location.","default":"","required":false},"preremove":{"description":"Preremove script location.","default":"","required":false},"postremove":{"description":"Postremove script location.","default":"","required":false},"nfpm_destination":{"description":"Where to install the nFPM binary (default: $HOME/bin/nfpm)","default":"$HOME/bin/nfpm"},"nfpm_template_destination":{"description":"Where to install the nfpm_template binary (default: $HOME/bin/nfpm_template)","default":"$HOME/bin/nfpm_template"},"nfpm_version":{"description":"The version of nFPM to install (default: Latest)","default":"Latest"},"nfpm_cache":{"description":"Cache the nFPM binary between runs. Defaults to false.","default":"false"},"nfpm_cache_key":{"description":"Custom cache key for the nFPM binary. When empty (the default) a key is\nderived automatically from the OS, architecture, a hash of the resolved\nnfpm_destination path, and the resolved nFPM version:\nnfpm-\u003cos\u003e-\u003carch\u003e-\u003cdest_hash\u003e-\u003cversion\u003e.\n","default":""},"do_not_override_action_ref":{"description":"Don't ever override this. It's a workaround for a runner bug with composite nested actions.\nSee: https://github.com/actions/runner/issues/2473#issuecomment-1776051383\n","default":"${{ github.action_ref }}"}},"outputs":{"nfpm-cache-hit":{"description":"'true' if the nFPM binary was restored from cache, 'false' otherwise.","value":"${{ steps.cache-nfpm.outputs.cache-hit }}"}},"runs":{"using":"composite","steps":[{"uses":"actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1","with":{"path":"nfpm_packaging","repository":"hashicorp/actions-packaging-linux","ref":"${{ inputs.do_not_override_action_ref }}"}},{"id":"nfpm-metadata","name":"Resolve nFPM metadata","shell":"bash","env":{"GH_TOKEN":"${{ github.token }}"},"run":"mkdir -p \"$(dirname \"${{ inputs.nfpm_destination }}\")\"\ndestination=\"$(readlink -f \"${{ inputs.nfpm_destination }}\")\"\necho \"$(dirname \"${destination}\")\" | tee -a \"$GITHUB_PATH\"\n\nos=\"$(echo \"$RUNNER_OS\" | tr '[:upper:]' '[:lower:]')\"\narch=\"$(echo \"$RUNNER_ARCH\" | tr '[:upper:]' '[:lower:]')\"\nif [ \"${arch}\" = \"x64\" ]; then\n  arch=\"amd64\"\nfi\n\nversion='${{ inputs.nfpm_version }}'\nif [ \"$(echo \"${version}\" | tr '[:upper:]' '[:lower:]')\" = \"latest\" ]; then\n  for attempt in 1 2 3; do\n    version=\"$(gh release list -R goreleaser/nfpm --exclude-drafts --exclude-pre-releases --limit 1 | cut -f1)\"\n    if [ -n \"${version}\" ]; then\n      break\n    fi\n    if [ \"${attempt}\" -eq 3 ]; then\n      echo \"failed to resolve latest nFPM version\" \u003e\u00262\n      exit 1\n    fi\n    sleep $((attempt * 5))\n  done\nfi\n\nnfpm_os=\"\"\ncase \"${RUNNER_OS}\" in\n  macOS)\n    nfpm_os=\"Darwin\"\n    ;;\n  Linux)\n    nfpm_os=\"Linux\"\n    ;;\n  *)\n    echo \"unsupported runner OS: ${RUNNER_OS}\" \u003e\u00262\n    exit 1\n    ;;\nesac\n\nnfpm_arch=\"\"\ncase \"${RUNNER_ARCH}\" in\n  ARM64)\n    nfpm_arch=\"arm64\"\n    ;;\n  X64)\n    nfpm_arch=\"x86_64\"\n    ;;\n  *)\n    echo \"unsupported runner architecture: ${RUNNER_ARCH}\" \u003e\u00262\n    exit 1\n    ;;\nesac\n\ncache_key='${{ inputs.nfpm_cache_key }}'\nif [ -z \"${cache_key}\" ]; then\n  dest_hash=$(echo \"${destination}\" | sha256sum | head -c 7)\n  cache_key=\"nfpm-${os}-${arch}-${dest_hash}-${version}\"\nfi\n\n{\n  echo \"NFPM_DESTINATION=${destination}\"\n  echo \"NFPM_ARCHIVE_PATTERN=nfpm_*_${nfpm_os}_${nfpm_arch}.tar.gz\"\n  echo \"NFPM_VERSION=${version}\"\n  echo \"NFPM_CACHE_KEY=${cache_key}\"\n} | tee -a \"$GITHUB_ENV\"\n"},{"id":"cache-nfpm","if":"inputs.nfpm_cache == 'true'","uses":"actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9","with":{"path":"${{ env.NFPM_DESTINATION }}","key":"${{ env.NFPM_CACHE_KEY }}"}},{"name":"Install nFPM","if":"inputs.nfpm_cache != 'true' || steps.cache-nfpm.outputs.cache-hit != 'true'","shell":"bash","env":{"GH_TOKEN":"${{ github.token }}"},"run":"tmpdir=\"$(mktemp -d)\"\ntrap 'rm -rf \"${tmpdir}\"' EXIT\nfor attempt in 1 2 3; do\n  if gh release download \"${NFPM_VERSION}\" -p \"${NFPM_ARCHIVE_PATTERN}\" -O \"${tmpdir}/nfpm.tgz\" -R goreleaser/nfpm; then\n    break\n  fi\n  if [ \"${attempt}\" -eq 3 ]; then\n    echo \"failed to download nFPM ${NFPM_VERSION}\" \u003e\u00262\n    exit 1\n  fi\n  rm -f \"${tmpdir}/nfpm.tgz\"\n  sleep $((attempt * 5))\ndone\ntar -xzf \"${tmpdir}/nfpm.tgz\" -C \"${tmpdir}\"\ninstall -m 0755 \"${tmpdir}/nfpm\" \"${NFPM_DESTINATION}\"\n"},{"name":"Verify nFPM","shell":"bash","run":"nfpm --version"},{"name":"Check for a Go compiler","id":"check_go","shell":"bash","run":"go_installed=\"false\"\nif type go \u003e/dev/null 2\u003e\u00261; then\n  go_installed=\"true\"\nfi\necho \"is_installed=${go_installed}\" | tee -a \"$GITHUB_OUTPUT\"\n"},{"if":"steps.check_go.is_installed == 'false'","uses":"actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e","with":{"cache":false,"go-version-file":"go.mod"}},{"name":"Build nfpm_template binary","shell":"bash","working-directory":"nfpm_packaging","env":{"TPL_DEST":"${{ inputs.nfpm_template_destination }}"},"run":"mkdir -p \"$(dirname \"$TPL_DEST\")\"\nDESTINATION=\"$(readlink -f $TPL_DEST)\"\nDESTINATION_DIR=\"$(dirname \"$DESTINATION\")\"\necho \"$DESTINATION_DIR\" \u003e\u003e \"$GITHUB_PATH\"\ngo build -o nfpm_template .\nmv nfpm_template \"$DESTINATION\"\n"},{"name":"Package binary","shell":"bash","env":{"INPUT_NAME":"${{ inputs.name }}","INPUT_ARCH":"${{ inputs.arch }}","INPUT_VERSION":"${{ inputs.version }}","INPUT_MAINTAINER":"${{ inputs.maintainer }}","INPUT_VENDOR":"${{ inputs.vendor }}","INPUT_DESCRIPTION":"${{ inputs.description }}","INPUT_HOMEPAGE":"${{ inputs.homepage }}","INPUT_LICENSE":"${{ inputs.license }}","INPUT_DEPENDS":"${{ inputs.depends }}","INPUT_BINARY":"${{ inputs.binary }}","INPUT_BIN_PATH":"${{ inputs.bin_path }}","INPUT_FILEPERMISSIONS":"${{ inputs.file_permissions }}","INPUT_USEROWNER":"${{ inputs.user_owner }}","INPUT_GROUPOWNER":"${{ inputs.group_owner }}","INPUT_CONFIG_DIR":"${{ inputs.config_dir }}","INPUT_PREINSTALL":"${{ inputs.preinstall }}","INPUT_POSTINSTALL":"${{ inputs.postinstall }}","INPUT_PREREMOVE":"${{ inputs.preremove }}","INPUT_POSTREMOVE":"${{ inputs.postremove }}","INPUT_DEB_DEPENDS":"${{ inputs.deb_depends }}","INPUT_DEB_RECOMMENDS":"${{ inputs.deb_recommends }}","INPUT_RPM_DEPENDS":"${{ inputs.rpm_depends }}","INPUT_RPM_RECOMMENDS":"${{ inputs.rpm_recommends }}"},"run":"if ! fileo=$(file \"$INPUT_BINARY\"); then\n  printf \"could not find binary: %s\\n\" \"$(pwd)\"\n  ls\n  exit 1\nelse\n  printf \"packaging binary %s\\n\" \"$fileo\"\nfi\n\nmkdir -p ./out\n\npackage() { local pkg_type=\"$1\" deps=\"${2:-}\" recs=\"${3:-}\"\n  local config_file\n  config_file=\"nfpm_${pkg_type}_config.yml\"\n  if ! INPUT_DEPENDS=\"$deps\" INPUT_RECOMMENDS=\"$recs\" nfpm_template \u003e \"$config_file\"; then\n    printf \"failed to executing nfpm_template for %s\\n\" \"$pkg_type\"\n    exit 1\n  fi\n  cat \"$config_file\"\n  nfpm package -f \"$config_file\" -p \"$pkg_type\" -t ./out/\n}\n\npackage rpm \"$INPUT_RPM_DEPENDS\" \"$INPUT_RPM_RECOMMENDS\"\npackage deb \"$INPUT_DEB_DEPENDS\" \"$INPUT_DEB_RECOMMENDS\"\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":38237635,"uuid":"400211812","full_name":"hashicorp/actions-packaging-linux","owner":"hashicorp","description":"Public GitHub Actions","archived":false,"fork":false,"pushed_at":"2026-08-27T18:54:07.000Z","size":83,"stargazers_count":3,"open_issues_count":3,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-08-30T13:26:09.916Z","etag":null,"topics":["crt"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hashicorp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"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":"2021-08-26T15:09:43.000Z","updated_at":"2026-08-25T15:25:09.000Z","dependencies_parsed_at":"2024-04-29T17:47:24.062Z","dependency_job_id":"1cd0b652-fa18-4cda-8e23-ba801bf5c70f","html_url":"https://github.com/hashicorp/actions-packaging-linux","commit_stats":{"total_commits":39,"total_committers":11,"mean_commits":"3.5454545454545454","dds":0.6923076923076923,"last_synced_commit":"8d55a640bb30b5508f16757ea908b274564792d4"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/hashicorp/actions-packaging-linux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36985421,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-22T15:14:58.755Z","status":"online","status_checked_at":"2026-08-30T02:00:08.400Z","response_time":126,"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":"hashicorp","name":"HashiCorp","uuid":"761456","kind":"organization","description":"Consistent workflows to provision, secure, connect, and run any infrastructure for any application.","email":"hello@hashicorp.com","website":"https://hashicorp.com","location":"San Francisco, CA","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/761456?v=4","repositories_count":944,"last_synced_at":"2026-08-25T23:45:01.092Z","metadata":{"has_sponsors_listing":false,"funding":null},"html_url":"https://github.com/hashicorp","funding_links":[],"total_stars":337188,"followers":10796,"following":0,"created_at":"2022-11-02T16:21:47.799Z","updated_at":"2026-08-25T23:45:01.112Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp/repositories"},"tags":[{"name":"v1","sha":"006298649be64cee63e7f94a54dfcf3e14766bf6","kind":"commit","published_at":"2026-04-21T09:20:35.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1","dependencies_parsed_at":"2026-08-24T10:22:00.709Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1/manifests"},{"name":"v1.11","sha":"006298649be64cee63e7f94a54dfcf3e14766bf6","kind":"commit","published_at":"2026-04-21T09:20:35.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.11","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.11","dependencies_parsed_at":"2026-08-08T08:57:58.416Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.11/manifests"},{"name":"v1.10","sha":"129994a18b8e7dc106937edf859fddd97af66365","kind":"commit","published_at":"2025-07-15T21:01:38.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.10","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.10","dependencies_parsed_at":"2025-07-24T04:56:49.168Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.10/manifests"},{"name":"v1.9","sha":"8d55a640bb30b5508f16757ea908b274564792d4","kind":"commit","published_at":"2024-09-11T16:24:29.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.9","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.9","dependencies_parsed_at":"2024-09-13T04:59:50.615Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.9/manifests"},{"name":"v1.8","sha":"9a9ce398877672719e83026640662f3182931fde","kind":"commit","published_at":"2024-06-12T18:16:59.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.8","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.8","dependencies_parsed_at":"2024-06-15T05:02:03.660Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.8/manifests"},{"name":"v1.7","sha":"0596d94121d44bd00463ac9d245efea64ee282d0","kind":"commit","published_at":"2023-02-02T22:59:59.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.7","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.7","dependencies_parsed_at":"2023-06-02T11:22:56.646Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.7/manifests"},{"name":"v1.6","sha":"514d75d0961adeddf1f928fb93b82f41735fc488","kind":"commit","published_at":"2022-09-02T16:33:58.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.6","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.6","dependencies_parsed_at":"2023-06-01T14:53:12.285Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.6/manifests"},{"name":"v1.5","sha":"d3bec88f6a263c1fe6721bfa6249c1a395e5ea24","kind":"commit","published_at":"2022-06-22T14:15:21.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.5","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.5","dependencies_parsed_at":"2023-05-31T10:26:43.019Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.5/manifests"},{"name":"v1.4","sha":"fff822e6a4efbe1e769c5b50240d637654214723","kind":"commit","published_at":"2022-06-08T15:40:01.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.4","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.4","dependencies_parsed_at":"2023-05-31T10:26:43.536Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.4/manifests"},{"name":"v1.3","sha":"353a2c1db820d64a3e0cca44b5fda41fef14fb6d","kind":"commit","published_at":"2022-03-02T20:59:16.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.3","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.3","dependencies_parsed_at":"2023-05-31T10:26:43.870Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.3/manifests"},{"name":"v1.2","sha":"c7c90756ec7fd91b50358e9955a0c13eee0ab492","kind":"commit","published_at":"2021-11-04T21:46:46.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.2","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.2","dependencies_parsed_at":"2023-05-31T10:26:44.147Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.2/manifests"},{"name":"v1.1","sha":"a1092c21e4d1531b7c4597dc633178a458edbe7b","kind":"commit","published_at":"2021-09-01T15:01:41.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.1","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.1","dependencies_parsed_at":"2023-05-31T10:26:44.406Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.1/manifests"},{"name":"v1.0","sha":"429acab2c3ade5d4efed9b26201a76a9c41e6cbf","kind":"commit","published_at":"2021-08-27T11:34:08.000Z","download_url":"https://codeload.github.com/hashicorp/actions-packaging-linux/tar.gz/v1.0","html_url":"https://github.com/hashicorp/actions-packaging-linux/releases/tag/v1.0","dependencies_parsed_at":"2023-05-31T10:26:44.675Z","dependency_job_id":null,"purl":"pkg:github/hashicorp/actions-packaging-linux@v1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/tags/v1.0/manifests"}]},"repo_metadata_updated_at":"2026-08-30T20:14:36.491Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":371,"rankings":{"downloads":null,"dependent_repos_count":2.018697512280146,"dependent_packages_count":0.0,"stargazers_count":34.663286325463474,"forks_count":11.015686895896055,"docker_downloads_count":2.8077959118998574,"average":10.101093329107908},"purl":"pkg:githubactions/hashicorp/actions-packaging-linux","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/hashicorp/actions-packaging-linux","docker_dependents_count":1,"docker_downloads_count":213,"usage_url":"https://repos.ecosyste.ms/usage/actions/hashicorp/actions-packaging-linux","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/hashicorp/actions-packaging-linux/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2026-08-20T20:58:55.401Z","issues_count":1,"pull_requests_count":55,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":4631584.613636363,"issues_closed_count":0,"pull_requests_closed_count":44,"pull_request_authors_count":12,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.38181818181818183,"merged_pull_requests_count":37,"bot_issues_count":0,"bot_pull_requests_count":24,"past_year_issues_count":0,"past_year_pull_requests_count":5,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":1004697.6666666666,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":3,"past_year_pull_request_authors_count":4,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":4,"past_year_merged_pull_requests_count":3,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Factions-packaging-linux/issues","maintainers":[{"login":"ryancragun","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ryancragun"},{"login":"rajeshsc1","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/rajeshsc1"},{"login":"mdeggies","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mdeggies"}],"active_maintainers":[{"login":"rajeshsc1","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/rajeshsc1"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/hashicorp%2Factions-packaging-linux/codemeta","maintainers":[]}