Atmos Pro Logo

Atmos Pro

ProductPricingDocsBlogChangelog
Create Workspace
← Back to Changelog
Enhancement

Simplified GitHub Actions Workflows

Erik Osterman

Erik Osterman

CEO & Founder of Cloud Posse

|April 5, 2026

Atmos Docker Container for GitHub Actions

Our workflow examples now use GitHub Actions' container option to run job steps inside the official ghcr.io/cloudposse/atmos Docker image instead of installing Atmos via a separate GitHub Action. This is faster because it skips reinstalling Atmos on every execution — Docker images are cached on runners, so subsequent runs start almost instantly.
We strongly recommend this approach when running large-scale workflow dispatches. GitHub API tokens are capped at 5,000 requests per hour per app, and eliminating install steps reduces API calls per workflow run. Declare the container once at the job level — no install step, no version pinning in action inputs, no wrapper scripts. See the updated workflow examples for the complete configuration.
jobs:
  affected:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/cloudposse/atmos:${{ vars.ATMOS_VERSION }}
    defaults:
      run:
        shell: bash

Zero-Config Describe Affected

The atmos describe affected command now works with a single flag. Atmos natively understands GitHub's CI environment — it detects the base branch, determines the correct commit SHA for comparison, and handles merged pull requests automatically.
Before, detecting affected stacks required shell scripting to calculate which SHA to use for a pull request, conditional logic to handle open vs. merged PRs, and a separate step to compute the parent commit. This is part of our commitment to eliminate shell foo from most operations involving Atmos. Now it's just:
atmos describe affected --upload
That's it. The Atmos CLI handles everything else. See the Affected Stacks workflow for the complete example.
Existing workflows continue to work — these are simplifications, not breaking changes. We recommend migrating to the new patterns for cleaner, more maintainable workflows. For a fully working reference, check out the Atmos Pro Example Advanced repository.

Older

Batch Dashboard for Large Deployments

Newer

Media Kit

Erik Osterman

Erik Osterman

CEO & Founder of Cloud Posse

Erik is the founder of Cloud Posse and creator of Atmos. With over a decade of experience helping teams adopt Terraform at scale, he is passionate about open-source infrastructure tooling and developer experience.

Book a Meeting
Atmos Pro Logo

Atmos Pro

The fastest way to deploy your apps on AWS with Terraform and GitHub Actions.

GitHubTwitterLinkedInYouTubeSlack

For Developers

  • Quick Start
  • Example Workflows
  • Atmos Documentation

Community

  • Register for Office Hours
  • Join the Slack Community
  • Try our Newsletter

Company

  • About Cloud Posse
  • Security
  • Pricing
  • Blog
  • Media Kit

Legal

  • SaaS Agreement
  • Terms of Use
  • Privacy Policy
  • Disclaimer
  • Cookie Policy

© 2026 Cloud Posse, LLC. All rights reserved.

Checking status...