{"id":11772348,"name":"LocalStack/setup-localstack","ecosystem":"actions","description":"Sets up LocalStack CLI in your GitHub Actions workflow.","homepage":"https://github.com/marketplace/actions/setup-localstack","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/LocalStack/setup-localstack","keywords_array":["aws","cicd","cloud","localstack","setup-tool"],"namespace":"localstack","versions_count":9,"first_release_published_at":"2022-05-14T15:40:05.000Z","latest_release_published_at":"2026-02-05T08:39:45.000Z","latest_release_number":"v0.2.5","last_synced_at":"2026-03-18T19:50:13.294Z","created_at":"2025-06-07T21:21:40.899Z","updated_at":"2026-03-18T19:50:13.294Z","registry_url":"https://github.com/LocalStack/setup-localstack","install_command":null,"documentation_url":null,"metadata":{"name":"Setup LocalStack","description":"Sets up LocalStack CLI in your GitHub Actions workflow.","author":"LocalStack Team","branding":{"icon":"code","color":"white"},"inputs":{"image-tag":{"description":"Tag of the LocalStack Docker image to use","required":true,"default":"latest"},"install-awslocal":{"description":"Whether to install the `awslocal` CLI into the environment","required":true,"default":"true"},"use-pro":{"description":"Whether to use LocalStack Pro (requires a valid CI Auth Token)","required":false,"default":"false"},"configuration":{"description":"Configuration variables to use for LocalStack","required":false,"default":""},"ci-project":{"description":"Name of the CI project to track in LocalStack Cloud","required":false,"default":""},"github-token":{"description":"Github token used to create PR comments","required":false,"default":""},"preview-cmd":{"description":"Command(s) used to create an Ephemeral Instance of the PR (can use $AWS_ENDPOINT_URL)","required":false},"include-preview":{"description":"Whether to include the created Ephemeral Instance URL in the PR comment","required":false},"skip-startup":{"description":"Explicitly prevent LocalStack start up, only installs CLI(s).\nRecommended to manage state later on in the pipeline or start up an ephemeral instance\n","required":true,"default":"false"},"skip-wait":{"description":"Skip wait for LocalStack","required":false,"default":"false"},"skip-ephemeral-stop":{"description":"Skip stopping LocalStack Ephemeral Instance","required":false,"default":"true"},"state-action":{"description":"Manage LocalStack state\nValid values are `load`, `save`, `start`, `stop`, `` (empty, don't manage state)\nValues `start`/`stop` only usable with Ephemeral Instances.\n","required":false,"default":""},"state-backend":{"description":"Either store the state of LocalStack locally, as a cloud pod or start up an ephemeral instance.\nValid values are `cloud-pods`, `ephemeral` or `local`.\nUse this option in unison with `state-action` to control behaviour.\n","required":false,"default":"cloud-pods"},"state-name":{"description":"Name of the state artifact (without extension)","required":false},"auto-load-pod":{"description":"The pod to load on startup of LocalStack, the env var AUTO_LOAD_POD","required":false,"default":""},"extension-auto-install":{"description":"The extension(s) to automatically install on startup of LocalStack, the env var EXTENSION_AUTO_INSTALL","required":false,"default":""},"lifetime":{"description":"The lifetime of the ephemeral instance, how long the instance should be available for","required":false,"default":"30"}},"runs":{"using":"composite","steps":[{"run":"echo \"GH_ACTION_ROOT=$(\n  ls -d $(\n    ls -d ./../../_actions/* |\n    grep -i localstack |\n    tail -n1\n  )/setup-localstack/* | \n  grep -v completed | \n  tail -n1\n)\" \u003e\u003e $GITHUB_ENV\n","shell":"bash"},{"name":"Install tools","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","if":"${{ inputs.skip-startup == 'true' || inputs.state-backend == 'ephemeral' || inputs.state-action == 'save' }}","with":{"uses":"${{ env.GH_ACTION_ROOT }}/tools","with":"{\n  \"install-awslocal\": ${{ toJSON(inputs.install-awslocal) }},\n}"}},{"name":"Start Localstack","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","if":"${{ inputs.skip-startup != 'true' \u0026\u0026 inputs.state-backend != 'ephemeral' \u0026\u0026 inputs.state-action != 'save' }}","with":{"uses":"${{ env.GH_ACTION_ROOT }}/startup","with":"{\n  \"image-tag\": ${{ toJSON(inputs.image-tag) }},\n  \"install-awslocal\": ${{ toJSON(inputs.install-awslocal) }},\n  \"use-pro\": ${{ toJSON(inputs.use-pro) }},\n  \"configuration\": ${{ toJSON(inputs.configuration) }},\n  \"ci-project\": ${{ toJSON(inputs.ci-project) }},\n  \"skip-wait\": ${{ toJSON(inputs.skip-wait) }}\n}"}},{"name":"Create Ephemeral Instance","if":"${{ inputs.state-action == 'start' \u0026\u0026 inputs.state-backend == 'ephemeral' }}","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","with":{"uses":"${{ env.GH_ACTION_ROOT }}/ephemeral/startup","with":"{\n  \"github-token\": ${{ toJSON(inputs.github-token) }},\n  \"preview-cmd\": ${{ toJSON(inputs.preview-cmd) }},\n  \"extension-auto-install\": ${{ toJSON(inputs.extension-auto-install )}},\n  \"auto-load-pod\": ${{ toJSON(inputs.auto-load-pod) }},\n  \"lifetime\": ${{ toJSON(inputs.lifetime )}}\n}"}},{"name":"Manage state","if":"${{ inputs.state-action == 'save' || inputs.state-action == 'load' }}","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","with":{"uses":"${{ env.GH_ACTION_ROOT }}/${{ inputs.state-backend }}","with":"{\n  \"name\": ${{ toJSON(inputs.state-name) }},\n  \"action\": ${{ toJSON(inputs.state-action) }}\n}"}},{"name":"Display Ephemeral Instance URL","if":"${{ inputs.state-action == 'start' \u0026\u0026 inputs.state-backend == 'ephemeral' \u0026\u0026 (inputs.include-preview == 'true' || inputs.ci-project != '') }}","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","with":{"uses":"${{ env.GH_ACTION_ROOT }}/finish","with":"{\n  \"github-token\": ${{ toJSON(inputs.github-token) }},\n  \"ci-project\": ${{ toJSON(inputs.ci-project) }},\n  \"include-preview\": ${{ inputs.include-preview != '' \u0026\u0026 toJSON(inputs.include-preview) || toJSON(env.include-preview) }}\n}"}},{"name":"Stop Ephemeral Instance","if":"${{ (inputs.skip-ephemeral-stop == 'false' || inputs.state-action == 'stop') \u0026\u0026 inputs.state-backend == 'ephemeral' }}","uses":"jenseng/dynamic-uses@8bc24f0360175e710da532c4d19eafdbed489a06","with":{"uses":"${{ env.GH_ACTION_ROOT }}/ephemeral/shutdown","with":"{\n  \"github-token\": ${{ toJSON(inputs.github-token) }},\n}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":65157760,"uuid":"492239501","full_name":"localstack/setup-localstack","owner":"localstack","description":"Sets up LocalStack CLI in your GitHub Actions workflow ☁️","archived":false,"fork":false,"pushed_at":"2026-02-06T16:56:04.000Z","size":102,"stargazers_count":36,"open_issues_count":6,"forks_count":12,"subscribers_count":13,"default_branch":"main","last_synced_at":"2026-02-11T21:56:53.930Z","etag":null,"topics":["aws","cicd","cloud","localstack","setup-tool"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/setup-localstack","language":"Shell","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/localstack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-05-14T14:30:08.000Z","updated_at":"2026-02-05T08:39:49.000Z","dependencies_parsed_at":"2024-03-15T13:32:16.390Z","dependency_job_id":"ccfc043f-3eb5-494b-bd6f-71ab454e887d","html_url":"https://github.com/localstack/setup-localstack","commit_stats":null,"previous_names":["localstack/setup-localstack","harshcasper/setup-localstack"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/localstack/setup-localstack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Fsetup-localstack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Fsetup-localstack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Fsetup-localstack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Fsetup-localstack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/localstack","download_url":"https://codeload.github.com/localstack/setup-localstack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Fsetup-localstack/sbom","scorecard":{"id":596654,"data":{"date":"2025-08-11","repo":{"name":"github.com/localstack/setup-localstack","commit":"9392b05ddb345894c2e86305fc426566e738c1db"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.2,"checks":[{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":8,"reason":"Found 25/30 approved changesets -- score normalized to 8","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":"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":"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":"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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/ci.yml:1","Warn: no topLevel permission defined: .github/workflows/ephemeral.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":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:45: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:50: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:74: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:77: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:97: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:114: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:117: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:142: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ephemeral.yml:10: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ephemeral.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ephemeral.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ephemeral.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ephemeral.yml:70: update your workflow using https://app.stepsecurity.io/secureworkflow/localstack/setup-localstack/ephemeral.yml/main?enable=pin","Info:   0 out of   5 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   8 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"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: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 27 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-20T23:18:15.379Z","repository_id":65157760,"created_at":"2025-08-20T23:18:15.379Z","updated_at":"2025-08-20T23:18:15.379Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29571888,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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"},"tags":[]},"repo_metadata_updated_at":"2026-02-18T11:38:27.982Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":34.34343434343434,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":17.17171717171717},"purl":"pkg:githubactions/LocalStack/setup-localstack","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/LocalStack/setup-localstack","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/LocalStack/setup-localstack","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/LocalStack/setup-localstack/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T11:19:25.709Z","issues_count":12,"pull_requests_count":42,"avg_time_to_close_issue":1767404.2222222222,"avg_time_to_close_pull_request":619508.3142857143,"issues_closed_count":9,"pull_requests_closed_count":35,"pull_request_authors_count":14,"issue_authors_count":8,"avg_comments_per_issue":2.1666666666666665,"avg_comments_per_pull_request":0.7857142857142857,"merged_pull_requests_count":29,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":4,"past_year_pull_requests_count":10,"past_year_avg_time_to_close_issue":3010379.0,"past_year_avg_time_to_close_pull_request":599229.5,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":4,"past_year_pull_request_authors_count":6,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":3.5,"past_year_avg_comments_per_pull_request":0.8,"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/localstack%2Fsetup-localstack/issues","maintainers":[{"login":"lukqw","count":23,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lukqw"},{"login":"HarshCasper","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/HarshCasper"},{"login":"whummer","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/whummer"},{"login":"alexrashed","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/alexrashed"}],"active_maintainers":[{"login":"alexrashed","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/alexrashed"},{"login":"HarshCasper","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/HarshCasper"},{"login":"lukqw","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lukqw"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LocalStack%2Fsetup-localstack/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LocalStack%2Fsetup-localstack/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LocalStack%2Fsetup-localstack/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LocalStack%2Fsetup-localstack/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LocalStack%2Fsetup-localstack/codemeta","maintainers":[]}