{"id":5805110,"name":"lando/pkg-action","ecosystem":"actions","description":"A GitHub Action for 'compiling' node projects into binaries using vercel/pkg or equivalent","homepage":"","licenses":"mit","normalized_licenses":[],"repository_url":"https://github.com/lando/pkg-action","keywords_array":["devops","github-actions"],"namespace":"lando","versions_count":18,"first_release_published_at":"2022-04-13T13:57:27.000Z","latest_release_published_at":"2024-11-15T17:11:37.000Z","latest_release_number":"v6.0.0","last_synced_at":"2026-05-10T18:19:21.781Z","created_at":"2023-01-04T15:23:29.153Z","updated_at":"2026-05-10T18:19:21.782Z","registry_url":"https://github.com/lando/pkg-action","install_command":null,"documentation_url":null,"metadata":{"name":"Pkg Action","description":"A GitHub Action for 'compiling' node projects into binaries using vercel/pkg or equivalent","branding":{"color":"purple","icon":"package"},"inputs":{"entrypoint":{"description":"The binary entrypoint path","required":true},"arch":{"description":"The architecture to build for x64|amd64|aarch64|arm64","required":false,"default":"${{ runner.arch }}"},"config":{"description":"The config file to use","required":false,"default":"package.json"},"filename":{"description":"The filename of the resulting binary","required":false,"default":""},"node-version":{"description":"The node version to package with","required":false,"default":"20"},"options":{"description":"Additional options and flags to pass into pkg","required":false},"os":{"description":"The operating system to build for win|linux|macos","required":false,"default":"${{ runner.os }}"},"pkg":{"description":"The version of pkg to use","required":false,"default":"@yao-pkg/pkg@5.16.1"},"test":{"description":"Hidden flag for input testing","default":false,"required":false},"upload":{"description":"Upload the artifact. Useful if you need to grab them for downstream things like code signing.","required":false,"default":true},"upload-key":{"description":"Upload key for the artifact. Useful if want to override outputs.artifact-key with a specific value.","required":false,"default":""}},"outputs":{"file":{"description":"The path to the generated binary.","value":"${{ steps.pkg-action.outputs.file }}"},"artifact-key":{"description":"The artifact upload key.","value":"${{ steps.pkg-action.outputs.artifact-key }}"}},"runs":{"using":"composite","steps":[{"name":"Validate required inputs","shell":"bash","run":"echo \"::group::Ensure entrypoint is set\"\nif [ \"${{ inputs.entrypoint }}\" == \"\" ]; then\n  echo \"::error title=Entrypoint is not set!::You must specify an entrypoint file in order to run this shit.\"\n  exit 47\nfi\necho \"::endgroup::\"\n"},{"name":"Set internal outputs","shell":"bash","id":"pkg-action-internal","run":"echo \"::group::Setting internal outputs\"\nif [ \"${{ inputs.os }}\" == \"Linux\" ]; then\n  echo \"target-os=linux\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.os }}\" == \"macOS\" ]; then\n  echo \"target-os=macos\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.os }}\" == \"Windows\" ]; then\n  echo \"target-os=win\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"target-os=${{ inputs.os }}\" \u003e\u003e $GITHUB_OUTPUT\nfi\n\nif [ \"${{ runner.arch }}\" == \"X86\" ]; then\n  echo \"runner-arch=x64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ runner.arch }}\" == \"X64\" ]; then\n  echo \"runner-arch=x64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ runner.arch }}\" == \"ARM\" ]; then\n  echo \"runner-arch=arm64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ runner.arch }}\" == \"ARM64\" ]; then\n  echo \"runner-arch=arm64\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"runner-arch=${{ runner.arch }}\" \u003e\u003e $GITHUB_OUTPUT\nfi\n\nif [ \"${{ inputs.arch }}\" == \"X86\" ]; then\n  echo \"target-arch=x64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.arch }}\" == \"X64\" ]; then\n  echo \"target-arch=x64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.arch }}\" == \"amd64\" ]; then\n  echo \"target-arch=x64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.arch }}\" == \"ARM\" ]; then\n  echo \"target-arch=arm64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.arch }}\" == \"ARM64\" ]; then\n  echo \"target-arch=arm64\" \u003e\u003e $GITHUB_OUTPUT\nelif [ \"${{ inputs.arch }}\" == \"aarch64\" ]; then\n  echo \"target-arch=arm64\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"target-arch=${{ inputs.arch }}\" \u003e\u003e $GITHUB_OUTPUT\nfi\n\nif [[ -n \"${{ inputs.filename }}\" ]]; then\n  echo \"target-output=--output=dist/${{ inputs.filename }}\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"target-output=--out-path=dist\" \u003e\u003e $GITHUB_OUTPUT\nfi\n\necho \"target-node=node${{ inputs.node-version }}\" \u003e\u003e $GITHUB_OUTPUT\necho \"::endgroup::\"\n"},{"name":"Validate arch emulation requirements","shell":"bash","run":"if [ \"${{ steps.pkg-action-internal.outputs.target-arch }}\" != \"${{ steps.pkg-action-internal.outputs.runner-arch }}\" ]; then\n  if [ \"${{ runner.os }}\" != \"Linux\" ]; then\n    echo \"::error title=Emulation only possible on Linux!::Emulating ${{ steps.pkg-action-internal.outputs.target-arch }} is only possible on Linux runners!\"\n    exit 48\n  fi\nfi\n"},{"name":"Install node ${{ inputs.node-version }}","uses":"actions/setup-node@v4","with":{"node-version":"${{ inputs.node-version }}","cache":"npm"}},{"name":"Install ${{ inputs.pkg }}","shell":"bash","run":"npm install -g ${{ inputs.pkg }}\nif pkg --version \u003e/dev/null; then\n  echo \"::notice title=pkg installed::Using version $(pkg --version)\"\nelse\n  echo \"::error title=Cannot run pkg::Cannot seem to find the pkg binary\"\nfi\n"},{"name":"Set outputs","shell":"bash","id":"pkg-action","run":"echo \"::group::Setting outputs\"\n\nif [[ -n \"${{ inputs.filename }}\" ]]; then\n  file=\"dist/${{ inputs.filename }}\"\nelse\n  file=\"dist/$(node -p \"require('./package.json').name\")\"\nfi\nif [ \"${{ steps.pkg-action-internal.outputs.target-os }}\" == \"win\" ]; then\n  file=\"${file}.exe\"\nfi\n\necho \"file=$file\" \u003e\u003e $GITHUB_OUTPUT\n\nif [[ -n \"${{ inputs.upload-key }}\" ]]; then\n  echo \"artifact-key=${{ inputs.upload-key }}\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"artifact-key=${{ github.event.repository.name }}-${{ steps.pkg-action-internal.outputs.target-node }}-${{ steps.pkg-action-internal.outputs.target-os }}-${{ steps.pkg-action-internal.outputs.target-arch }}-${{ github.sha }}\" \u003e\u003e $GITHUB_OUTPUT\nfi\n\necho \"::endgroup::\"\n"},{"name":"Verify Outputs","shell":"bash","run":"echo \"::group::Internal output information\"\necho \"arch=${{ steps.pkg-action-internal.outputs.target-arch }}\"\necho \"node=${{ steps.pkg-action-internal.outputs.target-node }}\"\necho \"os=${{ steps.pkg-action-internal.outputs.target-os }}\"\necho \"output=${{ steps.pkg-action-internal.outputs.target-output }}\"\necho \"::endgroup::\"\n\necho \"::group::Output information\"\necho \"artifact-key=${{ steps.pkg-action.outputs.artifact-key }}\"\necho \"file=${{ steps.pkg-action.outputs.file }}\"\necho \"::endgroup::\"\n"},{"name":"Run native ${{ steps.pkg-action-internal.outputs.target-arch }} pkg command","if":"inputs.test != 'true' \u0026\u0026 steps.pkg-action-internal.outputs.target-arch == steps.pkg-action-internal.outputs.runner-arch","shell":"bash","env":{"RUNNER_DEBUG":"${{ env.RUNNER_DEBUG }}"},"run":"if [ \"$RUNNER_DEBUG\" == 1 ] || [ \"$RUNNER_DEBUG\" == \"1\" ]; then\n  pkg \\\n  --config ${{ inputs.config }} \\\n  --target=${{ steps.pkg-action-internal.outputs.target-node }}-${{ steps.pkg-action-internal.outputs.target-os }}-${{ steps.pkg-action-internal.outputs.target-arch }} \\\n  ${{ steps.pkg-action-internal.outputs.target-output }} \\\n  --debug \\\n  ${{ inputs.options }} \\\n  ${{ inputs.entrypoint }}\nelse\n  pkg \\\n  --config ${{ inputs.config }} \\\n  --target=${{ steps.pkg-action-internal.outputs.target-node }}-${{ steps.pkg-action-internal.outputs.target-os }}-${{ steps.pkg-action-internal.outputs.target-arch }} \\\n  ${{ steps.pkg-action-internal.outputs.target-output }} \\\n  ${{ inputs.options }} \\\n  ${{ inputs.entrypoint }}\nfi\nstat ${{ steps.pkg-action.outputs.file }}\n"},{"name":"Run emulated ${{ steps.pkg-action-internal.outputs.target-arch }} pkg command","if":"inputs.test != 'true' \u0026\u0026 steps.pkg-action-internal.outputs.target-arch == 'arm64' \u0026\u0026 steps.pkg-action-internal.outputs.runner-arch == 'x64'","uses":"uraimo/run-on-arch-action@v2","with":{"arch":"aarch64","distro":"ubuntu18.04","githubToken":"${{ github.token }}","install":"apt update \u0026\u0026 apt -y install curl\ncurl -fsSL \"https://deb.nodesource.com/setup_14.x\" | bash -\napt-get install -y nodejs\ncurl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -\necho \"deb https://dl.yarnpkg.com/debian/ stable main\" | tee /etc/apt/sources.list.d/yarn.list\napt update \u0026\u0026 apt -y install yarn\nyarn global add ${{ inputs.pkg }} --prefix /usr/local\npkg --version\n","run":"pkg \\\n--config ${{ inputs.config }} \\\n--target=${{ steps.pkg-action-internal.outputs.target-node }}-${{ steps.pkg-action-internal.outputs.target-os }}-${{ steps.pkg-action-internal.outputs.target-arch }} \\\n${{ steps.pkg-action-internal.outputs.target-output }} \\\n${{ inputs.options }} \\\n${{ inputs.entrypoint }}\nstat ${{ steps.pkg-action.outputs.file }}\n"}},{"name":"Upload ${{ steps.pkg-action.outputs.artifact-key }}","if":"inputs.test != 'true' \u0026\u0026 inputs.upload == 'true'","uses":"actions/upload-artifact@v4","with":{"name":"${{ steps.pkg-action.outputs.artifact-key }}","path":"${{ steps.pkg-action.outputs.file }}","if-no-files-found":"error","retention-days":1}}]},"default_branch":"main","path":null},"repo_metadata":{"id":42079508,"uuid":"480878433","full_name":"lando/pkg-action","owner":"lando","description":"A GitHub action that uses vercel/pkg to \"compile\" node projects into binaries","archived":false,"fork":false,"pushed_at":"2025-07-23T20:47:02.000Z","size":53,"stargazers_count":18,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-26T22:24:15.595Z","etag":null,"topics":["devops","github-actions"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lando.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["lando","pirog"],"patreon":"devwithlando","open_collective":"devwithlando","custom":"https://lando.dev/join"}},"created_at":"2022-04-12T15:57:58.000Z","updated_at":"2025-07-23T20:47:05.000Z","dependencies_parsed_at":"2023-12-14T11:01:12.198Z","dependency_job_id":"3dc7b64f-f61b-43c4-af3b-76103994cc2e","html_url":"https://github.com/lando/pkg-action","commit_stats":{"total_commits":37,"total_committers":3,"mean_commits":"12.333333333333334","dds":"0.16216216216216217","last_synced_commit":"ce6ce8498c7c3d71337e9d7e081ff6e60c3e7e53"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/lando/pkg-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lando","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267276960,"owners_count":24063218,"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-07-26T02:00:08.937Z","response_time":62,"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":"lando","name":"Lando","uuid":"31605584","kind":"organization","description":"Liberating developers since 2012","email":"lando@lando.dev","website":"https://lando.dev","location":"United States of America","twitter":"devwithlando","company":null,"icon_url":"https://avatars.githubusercontent.com/u/31605584?v=4","repositories_count":72,"last_synced_at":"2024-10-29T20:08:10.921Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/lando","funding_links":["https://github.com/sponsors/lando"],"total_stars":4416,"followers":149,"following":0,"created_at":"2022-11-07T20:45:29.911Z","updated_at":"2024-10-29T20:08:10.921Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lando","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lando/repositories"},"tags":[{"name":"v6.0.0","sha":"c1540a151296da1764c75996ea4f0e077f5be9ac","kind":"commit","published_at":"2024-11-15T17:11:37.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v6.0.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v6.0.0","dependencies_parsed_at":"2024-11-30T04:07:30.722Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v6.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v6.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v6.0.0/manifests"},{"name":"v6","sha":"c1540a151296da1764c75996ea4f0e077f5be9ac","kind":"commit","published_at":"2024-11-15T17:11:37.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v6","html_url":"https://github.com/lando/pkg-action/releases/tag/v6","dependencies_parsed_at":"2024-11-30T04:07:30.705Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v6/manifests"},{"name":"v5.2.0","sha":"c09d1f66f5155aa7b63f5c0c87dc3304d1c71f9c","kind":"commit","published_at":"2024-11-14T16:18:15.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v5.2.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v5.2.0","dependencies_parsed_at":"2024-11-30T04:07:30.706Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v5.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.2.0/manifests"},{"name":"v5.1.0","sha":"ce6ce8498c7c3d71337e9d7e081ff6e60c3e7e53","kind":"commit","published_at":"2024-10-26T00:28:28.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v5.1.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v5.1.0","dependencies_parsed_at":"2024-10-27T04:43:41.852Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v5.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.1.0/manifests"},{"name":"v5","sha":"4bc466fb06749b06b0c7755d4311d3e357044c41","kind":"commit","published_at":"2024-03-14T16:26:03.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v5","html_url":"https://github.com/lando/pkg-action/releases/tag/v5","dependencies_parsed_at":"2024-03-17T08:48:14.725Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5/manifests"},{"name":"v5.0.0","sha":"4bc466fb06749b06b0c7755d4311d3e357044c41","kind":"commit","published_at":"2024-03-14T16:26:03.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v5.0.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v5.0.0","dependencies_parsed_at":"2024-03-17T08:48:14.804Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v5.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v5.0.0/manifests"},{"name":"v4","sha":"1b951b77b453f886e2c61c18ff15cd52a989098e","kind":"commit","published_at":"2023-12-04T18:30:01.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v4","html_url":"https://github.com/lando/pkg-action/releases/tag/v4","dependencies_parsed_at":"2023-12-06T04:02:38.259Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v4/manifests"},{"name":"v4.0.0","sha":"1b951b77b453f886e2c61c18ff15cd52a989098e","kind":"commit","published_at":"2023-12-04T18:30:01.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v4.0.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v4.0.0","dependencies_parsed_at":"2023-12-06T04:02:38.260Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v4.0.0/manifests"},{"name":"v3","sha":"aa1c8a478b56db3ce91c66f0a479e1eb4e0fa7ac","kind":"commit","published_at":"2023-09-28T20:05:50.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v3","html_url":"https://github.com/lando/pkg-action/releases/tag/v3","dependencies_parsed_at":"2023-09-30T05:40:22.031Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3/manifests"},{"name":"v3.0.1","sha":"aa1c8a478b56db3ce91c66f0a479e1eb4e0fa7ac","kind":"commit","published_at":"2023-09-28T20:05:50.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v3.0.1","html_url":"https://github.com/lando/pkg-action/releases/tag/v3.0.1","dependencies_parsed_at":"2023-09-30T05:40:21.541Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3.0.1/manifests"},{"name":"v3.0.0","sha":"c8986781184882cc77fd0f3f6d1935894acac67d","kind":"commit","published_at":"2023-09-28T11:52:53.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v3.0.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v3.0.0","dependencies_parsed_at":"2023-09-30T05:40:21.933Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v3.0.0/manifests"},{"name":"v2.2.2","sha":"c62f5a5776ae51acd763eef9edc8b90130ab4028","kind":"commit","published_at":"2023-06-18T14:42:23.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.2.2","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.2.2","dependencies_parsed_at":"2023-06-28T01:19:13.284Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.2/manifests"},{"name":"v2.2.1","sha":"52e92a761d68e9a784e814cf64fb17fbcad3fa2d","kind":"tag","published_at":"2023-04-27T19:39:34.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.2.1","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.2.1","dependencies_parsed_at":"2023-06-02T00:36:24.302Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.1/manifests"},{"name":"v2.2.0","sha":"c5404f05e30c386485b63b08c7abedb477fc7287","kind":"tag","published_at":"2023-03-02T03:02:32.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.2.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.2.0","dependencies_parsed_at":"2023-06-02T00:36:25.307Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.2.0/manifests"},{"name":"v2.1.0","sha":"88e02c5052af6d97e309257f5905c96eb1428dd9","kind":"tag","published_at":"2023-03-02T02:11:58.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.1.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.1.0","dependencies_parsed_at":"2023-06-02T00:36:25.555Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.1.0/manifests"},{"name":"v2","sha":"0d0a00d1f6c893ed81cf326a5a869e3a5da358ae","kind":"tag","published_at":"2022-04-13T21:00:51.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2","html_url":"https://github.com/lando/pkg-action/releases/tag/v2","dependencies_parsed_at":"2023-05-30T19:14:08.152Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2/manifests"},{"name":"v2.0.1","sha":"0d0a00d1f6c893ed81cf326a5a869e3a5da358ae","kind":"tag","published_at":"2022-04-13T21:00:45.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.0.1","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.0.1","dependencies_parsed_at":"2023-05-30T19:14:07.061Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"b1e8553b0e8f37fe8a14d81859d669884639df6a","kind":"tag","published_at":"2022-04-13T13:57:27.000Z","download_url":"https://codeload.github.com/lando/pkg-action/tar.gz/v2.0.0","html_url":"https://github.com/lando/pkg-action/releases/tag/v2.0.0","dependencies_parsed_at":"2023-05-30T19:14:07.632Z","dependency_job_id":null,"purl":"pkg:github/lando/pkg-action@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/tags/v2.0.0/manifests"}]},"repo_metadata_updated_at":"2025-07-27T00:36:29.181Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":6,"rankings":{"downloads":null,"dependent_repos_count":14.43828236412613,"dependent_packages_count":0.0,"stargazers_count":8.334653779115829,"forks_count":35.11012517826018,"docker_downloads_count":null,"average":14.470765330375535},"purl":"pkg:githubactions/lando/pkg-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/lando/pkg-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/lando/pkg-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/lando/pkg-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/lando","https://github.com/sponsors/pirog","https://patreon.com/devwithlando","https://opencollective.com/devwithlando","https://lando.dev/join"],"critical":null,"issue_metadata":{"last_synced_at":"2025-07-04T15:53:43.520Z","issues_count":2,"pull_requests_count":10,"avg_time_to_close_issue":2039282.0,"avg_time_to_close_pull_request":12677.0,"issues_closed_count":1,"pull_requests_closed_count":10,"pull_request_authors_count":1,"issue_authors_count":2,"avg_comments_per_issue":0.5,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":10,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":3,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":1680.3333333333333,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":3,"past_year_pull_request_authors_count":1,"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":0,"past_year_merged_pull_requests_count":3,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fpkg-action/issues","maintainers":[{"login":"pirog","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/pirog"}],"active_maintainers":[{"login":"pirog","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/pirog"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/lando%2Fpkg-action/codemeta","maintainers":[]}