Documents
README
README
Type
External
Status
Published
Created
Jun 13, 2026
Updated
Jun 13, 2026
Source
View

projectbluefin/actions#

Shared GitHub Actions for bootc image builders. Used by bluefin, aurora, and bazzite.

OpenSSF Scorecard

DESIGNED FOR UPSTREAM ADOPTION#

These skills are the shared knowledge of 5 years of Universal Blue. The humans did such a good job that we were able to redo it with agents in a weekend. If you find an action here that should live in a CNCF or OpenSSF or any other upstream project and want to help, consider it your first quest!

Bluefin has testing branches and a passionate developer community, if you're an OSS maintainer and want a piece of tooling in here to live upstream, take it and we'll commit to CI for you. Another logo in your ADOPTERS.md.

Maintainers: see docs/MAINTAINERS.md for the agentic workflow, review gates, and on-call runbook.

For private vulnerability reporting, see SECURITY.md.

Available Actions#

ActionPurpose
bootc-build/setup-runnerPrepare runner: update podman, configure storage, install tools
bootc-build/dnf-cacheRestore/save DNF cache with permissions workaround
bootc-build/ghcr-cleanupPrune old GHCR images
bootc-build/preflightValidate runner environment before build
bootc-build/detect-changesDetect changed paths and compute the image-flavor build matrix
bootc-build/validate-prValidate a PR: just check, shellcheck, hadolint, pre-commit
bootc-build/generate-tagsGenerate OCI image tags from stream, version, and event context
bootc-build/push-imageGHCR push with retry and digest capture
bootc-build/create-manifestAssemble and push a multi-arch OCI image manifest index
bootc-build/sign-and-publishCosign sign + SBOM + SLSA Build L2 provenance attestation
bootc-build/scan-imageTrivy CVE scan before push; uploads SARIF and can auto-file CVE issues on projectbluefin main builds
bootc-build/rechunkrpm-ostree rechunking for OTA deltas
bootc-build/chunkachunkah rechunking (OCI-native, no rpm-ostree)
bootc-build/generate-release-notesgit-cliff Conventional Commits changelog

Utility actions#

ActionPurpose
.github/actions/validate-pr-titleEnforce Conventional Commits PR title format

Reusable Workflows#

WorkflowPurpose
.github/workflows/reusable-build.ymlFull Fedora bootc image build pipeline (Path 1)
.github/workflows/reusable-release.ymlImage stable-release orchestration and Conventional Commits GitHub Release creation

Quick Start#

jobs:
  build:
    runs-on: ubuntu-24.04
    steps:
      - uses: actions/checkout@v4

      - uses: projectbluefin/actions/bootc-build/setup-runner@v1
        with:
          install-tools: '["just", "cosign", "oras"]'

      - uses: projectbluefin/actions/bootc-build/dnf-cache@v1
        with:
          action: restore
          cache-name: my-image-42

      - run: just build-ghcr

      - uses: projectbluefin/actions/bootc-build/dnf-cache@v1
        with:
          action: save
          cache-name: my-image-42

Versioning#

Pin to @v1 for stability. Renovate manages updates in consuming repos.