Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Push images to Quay without a password

Keyless authentication with robot accounts in Red Hat Quay

July 22, 2026
Ken Dreyer
Related topics:
CI/CD
Related products:
Red Hat Quay

    "This repository has no secrets" — who doesn't want this screenshot (figure 1) to provide to a security auditor, right?

    GitHub repository settings page showing zero stored secrets in both the environment and repository categories.
    Figure 1: GitHub repository settings page showing zero stored secrets in both the environment and repository categories.

    If you're pushing container images from GitHub Actions, you probably have a registry token stored as a GitHub secret. That token lives forever until you rotate it, or until it leaks.

    There's a better way!

    GitHub (or GitLab, and other Git hosts) can prove your workflow's identity to the registry using OpenID Connect (OIDC). Your workflow gets an ephemeral quay.io token every time it runs. Red Hat Quay calls this keyless robot-account federation.

    This makes it easier to ship your software because you can add new repositories to your build pipeline without touching GitHub secrets at all. There's no secret API key to create, nothing to rotate, and nothing to revoke if a secret leaks or someone leaves the team.

    In three easy steps:

    1. Create a robot account in Quay.
    2. Configure robot federation pointing to GitHub's OIDC issuer, and set the subject to match your repository.
    3. In GitHub Action workflow, request an OIDC token from Github, exchange it for a short-lived Quay robot token, and use that token to log in to Quay and push or pull images.

    I've based this guide on Quay's product docs: Keyless authentication with robot accounts.

    Step 1: Create a repository and robot account in Quay

    First, you need somewhere for your container images to land. This takes about 30 seconds.

    To create a new repository in the Quay UI, go to Organizations > (your-quay-org) > Create New Repository. In my example, my Quay organization is thoughtful-code, so I created thoughtful-code/quay-oidc-demo.

    Next, create a Robot Account that can push images to this repository:

    1. In the Quay UI, go to Organizations > (your-quay-org) > Robot Accounts.
    2. Click Create Robot Account and give it a name. I called mine githubactions.
    3. The bot's full Quay user name is <your-quay-org>+<robot-name>. You'll need that later in your GitHub Action YAML. In my example, my Quay org is thoughtful-code, so my bot's name is thoughtful-code+githubactions. (As of Quay 3.16, robot federation only works for robot accounts in Quay orgs, not robot accounts for individual Quay users.)

    Now grant the robot write permission on the target repository:

    1. Go to the repository in Quay (for example, your-quay-org/quay-oidc-demo)
    2. Click Settings > User and Robot Permissions
    3. Add the robot account and set its role to Write

    Step 2: Set up robot-account federation (linking Quay to GitHub's OIDC provider)

    Now you must configure Quay.io to trust the OIDC tokens that your GitHub Action creates.

    First, determine your GitHub repo's subject claim string. To find this, go to your GitHub repository's Settings > Actions > OIDC. Check the Use immutable subject claim box (this is the default for new repos), and copy the Default subject claim prefix (figure 2). You'll append :ref:refs/heads/main to this when you configure your robot account federation in Quay.

    GitHub repository OIDC settings page showing the immutable subject claim prefix.
    Figure 2: GitHub repository OIDC settings page showing the immutable subject claim prefix.

    Back to Quay:

    1. In Quay, go to Organizations > (your-quay-org) > Robot Accounts
    2. Click the kebab menu icon (⋮) and choose Set robot federation (as in figure 3).

      The Quay kebab menu expanded to "Set Robot Federation."
      Figure 3: The Quay kebab menu expanded to "Set Robot Federation."
    3. Click the plus (+) link and fill in these values (see figure 4):
      • Issuer URL: https://token.actions.githubusercontent.com
      • Subject: repo:ktdreyer@620295/quay-oidc-demo@1238958648:ref:refs/heads/main (Use your own repository's immutable subject prefix. See above.)
    4. Click Save.

    The Subject field (figure 4) is important for security. It limits who and what can authenticate to Quay. In this example, I only allow actions in my ktdreyer/quay-oidc-demo Git repository, and only Actions that run directly on the main branch. Quay rejects any token from actions on a work-in-progress branch or a fork.

    Quay robot identity configuration settings showing the GitHub issuer URL and subject.
    Figure 4: Quay robot identity configuration settings showing the GitHub issuer URL and subject.

    Note that the GitHub owner (ktdreyer) or org name string does not necessarily need to match the Quay org (thoughtful-code). The subject controls who can mint the token, while the Quay org controls where the image lands.

    Step 3: Use the OIDC token in a GitHub Actions workflow

    Here's the fun part: No secrets required.

    # .github/workflows/build-push.yml
    name: Build & push to Quay
    on:
      push:
        branches: [ main ]
    permissions:
      # Required for OIDC token exchange
      id-token: write
      contents: read
    jobs:
      build:
        runs-on: ubuntu-latest
        env:
          QUAY_ROBOT_USER: thoughtful-code+githubactions   # <org>+<robot-name>
        steps:
          - name: Checkout code
            uses: actions/checkout@v6
          - name: Build image
            run: |
              podman build -t quay.io/thoughtful-code/quay-oidc-demo:latest .
          - name: Obtain OIDC token for Quay
            run: |
              set -o pipefail
              # Ask GitHub to prove who we are (signed OIDC token)
              OIDC_TOKEN=$(curl -sSf -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" \
                "$ACTIONS_ID_TOKEN_REQUEST_URL" | jq -r .value)
              echo "::add-mask::$OIDC_TOKEN"
              # Trade that proof (OIDC_TOKEN) for short-lived Quay robot token
              QUAY_TOKEN=$(curl -sSf \
                "https://quay.io/oauth2/federation/robot/token" \
                -u "$QUAY_ROBOT_USER:$OIDC_TOKEN" | jq -r .token)
              echo "::add-mask::$QUAY_TOKEN"
              # Export the token for later steps
              echo "QUAY_TOKEN=$QUAY_TOKEN" >> $GITHUB_ENV
          - name: Log in to Quay
            uses: redhat-actions/podman-login@v1
            with:
              registry: quay.io
              username: ${{ env.QUAY_ROBOT_USER }}
              password: ${{ env.QUAY_TOKEN }}
          - name: Push image
            run: |
              podman push quay.io/thoughtful-code/quay-oidc-demo:latest

    The podman-login step uses the temporary QUAY_TOKEN as the password. This token expires after one hour. I recommend running login after you've done your build. The build step doesn't need the token, and with this pattern you can limit the short-lived QUAY_TOKEN to the exact steps that need it.

    Push a commit to main and watch the action run! If you've set everything correctly, a fresh image lands in your Quay.io repo, no long-lived API keys in sight.

    Where to go from here

    • Beyond GitHub: OIDC works with Git forges like GitLab or Forgejo.
    • Lock down who can push: You could scope the Subject to a GitHub Actions environment with, for example, repo:ktdreyer@620295/quay-oidc-demo@1238958648:environment:production. This further limits which CI jobs can push images.
    • Pulling a private base image: In this example, we built an image from a public base and pushed it at the end. If you wanted to pull a private base image in your build process, you would authenticate to Quay with OIDC first, before building. If your build process takes longer than an hour, you'd authenticate to Quay a second time in the job for the push operation.
    • Fork the demo repo to try this with your own Quay org. Edit the workflow and Containerfile to fit your needs.
    • Read the full keyless authentication docs for the complete reference on robot-account federation in Red Hat Quay 3.16.
    • Access Quay on Red Hat OpenShift with short-lived credentials to set up the same pattern on OpenShift.

    Related Posts

    • Gain visibility into Red Hat Quay with Splunk

    • How to use Red Hat Quay as a proxy cache

    • Access Quay on OpenShift with short-lived credentials

    Recent Posts

    • Push images to Quay without a password

    • Simplify GitOps workflows with MCP in OpenShift Lightspeed

    • Operationalize AI agents with OpenShift and Kubernetes primitives

    • Architect an open blueprint for cloud-native AI agents

    • Computer use: How AI agents can automate almost anything

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.