Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: localstack/setup-localstack
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: localstack/setup-localstack
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feat/skip-pull
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Jun 16, 2026

  1. feat: add skip-pull input to reuse a locally present image

    Adds an opt-in `skip-pull` input (default 'false', no behavior change
    when unset) that skips the explicit `docker pull` in the startup step.
    This lets callers reuse an image already present locally — e.g. one
    restored from a CI cache via `docker load`, or baked into a self-hosted
    runner — avoiding a redundant registry round-trip and Docker Hub rate
    limit usage on every run.
    
    It is safe because the pull being skipped is a backgrounded refresh:
    `localstack start -d` still pulls the image itself if it is genuinely
    missing, so a caller that sets the flag without a present image is not
    left without one. The input mirrors the existing `skip-wait` /
    `skip-startup` convention (kebab-case, string 'false' default) and is
    threaded root action -> startup sub-action the same way.
    
    Includes a CI test job and a README example.
    travis-jorge authored and plafond committed Jun 16, 2026
    Configuration menu
    Copy the full SHA
    063fcf4 View commit details
    Browse the repository at this point in the history
Loading