zackees/soldr GitHub Actions scorecard

Public GitHub Actions data, last 30 days. Updated .

Data sourced from public GitHub. GitSpider is not affiliated with or endorsed by this repository's owners. Request removal.

1,836 min/mo
recoverable (~28% of CI time) · across 13 patterns · ≈$11/mo
Estimated from wall-clock time · public repos pay $0, $ = private-repo equivalent
See all 13 fixes, each with the exact YAML ↓
15.0%
failure rate, 30d · Below average
25m
avg time to recover from a failure
🕸️ Reliability: Below averageFailure rate beats ~49% of the 19 repos GitSpider watches.
Since : findings 29 → 13 · recoverable ~3,450 → ~1,836 min/mo (detector updated between scans, so part of this change is ours, not the repo's)
29 workflows · 500 runs (16.7/day) · 6,630 CI-min (wall-clock) · ≈$40 at private-repo rates (30d)

Where the minutes go (30d)

CI~5,777 min · 198 runs
Setup Soldr Action~392 min · 29 runs
Build all targets from Linux (pinned soldr, zero host toolchain)~150 min · 22 runs
or track on every push →

Waste detected

Biggest wins first, each with the exact config fix.

Write-only cache (never restored) · CI

~1733 min/mo · ≈$10/mo

An `actions/cache` key includes the commit SHA with no `restore-keys`, so every run writes an entry no later run can restore. Key on your lockfile hash and add a `restore-keys` prefix.

- uses: actions/cache@v4
  with:
    path: <cache dir>
    key: deps-${{ runner.os }}-${{ hashFiles('**/<lockfile>') }}
    restore-keys: |
      deps-${{ runner.os }}-

Full guide: how to fix this →

Missing dependency cache · Build all targets from Linux (pinned soldr, zero host toolchain)

~45 min/mo

Add `Swatinem/rust-cache@v2` (the de-facto cargo cache), or an `actions/cache@v4` step keyed on `Cargo.lock`.

- uses: Swatinem/rust-cache@v2

Full guide: how to fix this →

Workflow failing almost every run · Windows Docker Linux cross smoke

~34 min/mo

Fails or times out on nearly all recent runs, burning minutes to produce only red, and an always-red workflow usually gets ignored. Fix it, or disable the trigger until it's ready.

Full guide: how to fix this →

Missing dependency cache · Windows Docker Linux cross smoke

~10 min/mo

Add `Swatinem/rust-cache@v2` (the de-facto cargo cache), or an `actions/cache@v4` step keyed on `Cargo.lock`.

- uses: Swatinem/rust-cache@v2

Full guide: how to fix this →

Missing dependency cache · thin-v2-verify

~7 min/mo

Add `Swatinem/rust-cache@v2` (the de-facto cargo cache), or an `actions/cache@v4` step keyed on `Cargo.lock`.

- uses: Swatinem/rust-cache@v2

Full guide: how to fix this →

Missing dependency cache · Cook Size Gate

~7 min/mo

Add `Swatinem/rust-cache@v2` (the de-facto cargo cache), or an `actions/cache@v4` step keyed on `Cargo.lock`.

- uses: Swatinem/rust-cache@v2

Full guide: how to fix this →

Also found: 7 more config fixes with negligible recoverable minutes: timeouts, retention, path filters

Premium runners (macOS / Windows) · CI

~0 min/mo

macOS bills ~10x and Windows ~2x a Linux minute. The cost estimate above assumes Linux, so your real spend is higher. Move any job that doesn't need them to `ubuntu-latest`.

jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

Full guide: how to fix this →

Premium runners (macOS / Windows) · Setup Soldr Action

~0 min/mo

macOS bills ~10x and Windows ~2x a Linux minute. The cost estimate above assumes Linux, so your real spend is higher. Move any job that doesn't need them to `ubuntu-latest`.

jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

Full guide: how to fix this →

Cache without restore-keys · Perf Matrix

~0 min/mo

The cache restores only on an exact key match, so any lockfile change means a full cold download. Add a `restore-keys:` prefix line for partial restores.

    key: deps-${{ runner.os }}-${{ hashFiles('**/<lockfile>') }}
    restore-keys: |
      deps-${{ runner.os }}-

Full guide: how to fix this →

Scheduled workflow runs in forks · Perf Matrix

~0 min/mo

The schedule has no repository guard, so forks that enable Actions inherit the cron and burn their own minutes. Gate the job with `if: github.repository == 'owner/repo'`.

jobs:
  nightly:
    if: github.repository == 'owner/repo'
    runs-on: ubuntu-latest

Full guide: how to fix this →

Full-history clone (fetch-depth: 0) · Vendor state

~0 min/mo

checkout fetches the entire git history every run (`fetch-depth: 0`) and nothing in the workflow appears to read it. Remove the line; the default shallow clone is much faster on big repos. Keep it if a step genuinely needs history.

- uses: actions/checkout@v4
  # fetch-depth: 0 removed — default shallow clone is enough here

Full guide: how to fix this →

Premium runners (macOS / Windows) · Build all targets from Linux (pinned soldr, zero host toolchain)

~0 min/mo

macOS bills ~10x and Windows ~2x a Linux minute. The cost estimate above assumes Linux, so your real spend is higher. Move any job that doesn't need them to `ubuntu-latest`.

jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

Full guide: how to fix this →

Premium runners (macOS / Windows) · Windows Docker Linux cross smoke

~0 min/mo

macOS bills ~10x and Windows ~2x a Linux minute. The cost estimate above assumes Linux, so your real spend is higher. Move any job that doesn't need them to `ubuntu-latest`.

jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

Full guide: how to fix this →

Copy every fix as one block (6 snippets, annotated per workflow)
# Write-only cache (never restored) (applies to: CI)
- uses: actions/cache@v4
  with:
    path: <cache dir>
    key: deps-${{ runner.os }}-${{ hashFiles('**/<lockfile>') }}
    restore-keys: |
      deps-${{ runner.os }}-

# Missing dependency cache (cargo) (applies to: Build all targets from Linux (pinned soldr, zero host toolchain), Windows Docker Linux cross smoke, thin-v2-verify, Cook Size Gate)
- uses: Swatinem/rust-cache@v2

# Premium runners (macOS / Windows) (applies to: CI, Setup Soldr Action, Build all targets from Linux (pinned soldr, zero host toolchain), Windows Docker Linux cross smoke)
jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

# Cache without restore-keys (applies to: Perf Matrix)
    key: deps-${{ runner.os }}-${{ hashFiles('**/<lockfile>') }}
    restore-keys: |
      deps-${{ runner.os }}-

# Scheduled workflow runs in forks (applies to: Perf Matrix)
jobs:
  nightly:
    if: github.repository == 'owner/repo'
    runs-on: ubuntu-latest

# Full-history clone (fetch-depth: 0) (applies to: Vendor state)
- uses: actions/checkout@v4
  # fetch-depth: 0 removed — default shallow clone is enough here

Each snippet is representative. Merge into the named workflow files rather than pasting wholesale.

Add the badge to your README

Live CI-health badge → GitSpider badge

[![GitSpider](https://gitspider.com/badge/zackees/soldr.svg)](https://gitspider.com/scan/zackees/soldr)

Want this on every push?

This scorecard is a one-time snapshot. Install the free GitHub App to track this repo continuously: new regressions caught as they land, trends over time, on your public and private repos. Team adds the offending commit on the PR + Slack alerts.

Install & monitor this repo →

💬 On Team, this same analysis posts automatically to every PR: the regression, and the exact commit that caused it, right where your team already looks. See plans →

Not ready to install? Get this report by email. No spam, unsubscribe anytime.

Share this scorecard: https://gitspider.com/scan/zackees/soldr