> ## Documentation Index
> Fetch the complete documentation index at: https://www.1password.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# 1Password CI/CD Integrations

export const ImageButton = ({src, darkSrc, url, text, height, alt}) => <a className="image-button-link inline-block mr-4 mb-2 no-underline !border-0 !border-b-0 !shadow-none text-[var(--op-secure-blue)] dark:text-[var(--op-cornflower)] hover:no-underline hover:!border-0 hover:!border-b-0 hover:!shadow-none group" href={url}>
    <div className="flex items-center gap-2">
      {darkSrc ? <>
          <span className="dark:hidden">
            <Icon icon={src} size={32} />
          </span>
          <span className="hidden dark:inline">
            <Icon icon={darkSrc} size={32} />
          </span>
        </> : <Icon icon={src} size={32} />}
      <span className="font-medium text-[1.1rem] group-hover:underline group-hover:decoration-[var(--op-secure-blue)] dark:group-hover:decoration-[var(--op-cornflower)] group-hover:underline-offset-4">
        {text}
      </span>
    </div>
  </a>;

You can use 1Password integrations to securely access secrets from 1Password in your CI/CD pipeline without exposing any plaintext secrets in code, and rotate secrets without having to update your CI/CD environment.

<Card title="Using 1Password across your full deployment stack?" href="/get-started/developer-quickstart" icon="book-open">
  The [secure your deployments workflow guide](/get-started/secure-deployment) covers how to load secrets into CI/CD pipelines, containers, and production applications without exposing any secrets in plaintext.
</Card>

## Get started

Select the CI/CD tool you use to get started. All integrations support authentication with both [1Password Connect Servers](/connect/) and [1Password Service Accounts](/service-accounts/).

<CardGroup cols={3}>
  <div>
    <ImageButton alt="CircleCI" src="/static/img/logos/circleci.svg" darkSrc="/static/img/logos/circleci-dark.svg" height="32px" url="/ci-cd/circle-ci/" text="CircleCI" />
  </div>

  <div>
    <ImageButton alt="GitHub Actions" src="/static/img/logos/github.svg" darkSrc="/static/img/logos/github-dark.svg" height="32px" url="/ci-cd/github-actions/" text="GitHub Actions" />
  </div>

  <div>
    <ImageButton alt="Jenkins" src="/static/img/logos/jenkins.png" height="32px" url="/ci-cd/jenkins/" text="Jenkins" />
  </div>
</CardGroup>
