Chia-Network/chia-blockchain GitHub Actions scorecardPublic 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.
🏆 You're Top 25%. Show it off in your README:
[](https://gitspider.com/scan/Chia-Network/chia-blockchain)Biggest wins first, each with the exact config fix.
🚨 Check PR LabelsAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true🩹 Conflict CheckAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true🚨 Dependency ReviewAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true🚨🚀 Lint and upload source distribution`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7🚨🚀 Lint and upload source distributionThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }🚨🚀 Lint and upload source distributionmacOS 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🚨🚀 Lint and upload source distribution12 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: chia-network/actions/clean-workspace@<full-sha> # was @main📦🚀 Build Installer - Windows 10`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7📦🚀 Build Installer - Windows 10macOS 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📦🚀 Build Installer - Windows 10checkout 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📦🚀 Build Installer - Windows 10A test/build job is bound to a GitHub environment, so every run counts as a deployment: PR and deployments-API noise. Use repository secrets or OIDC for non-deploy jobs.
📦🚀 Build Installer - Windows 106 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/setjobenv@<full-sha> # was @main🚨 CodeQLNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🚨 GitHub Super Lintercheckout 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📦🚀 Build Installer - Linux RPM AMD64`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7📦🚀 Build Installer - Linux RPM AMD64The matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }📦🚀 Build Installer - Linux RPM AMD64checkout 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📦🚀 Build Installer - Linux RPM AMD645 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/git-mark-workspace-safe@<full-sha> # was @main📦🚀 Build Installer - Linux DEB`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7📦🚀 Build Installer - Linux DEBThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }📦🚀 Build Installer - Linux DEBcheckout 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📦🚀 Build Installer - Linux DEB6 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main🏗️ Test Install ScriptsNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🏗️ Test Install ScriptsThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }🏗️ Test Install ScriptsmacOS 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🏗️ Test Install Scriptscheckout 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🏗️ Test Install ScriptsSystem packages install from the network on every run with no cache. Cache them (cache-apt-pkgs-action) or check whether the runner image already has the tool.
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: <your packages>
version: 1.0🏗️ Test Install Scripts3 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/setup-python@<full-sha> # was @main🚨 pre-commitThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }🚨 pre-commitmacOS 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🚨 pre-commitcheckout 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🚨 pre-commit4 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main🧪 testNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🧪 test`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7🧪 testmacOS 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🧪 testThe schedule fires at minute :00, GitHub's peak window, where scheduled runs get delayed or skipped. Shift to any other minute for the same cadence with less contention.
on:
schedule:
- cron: '16 13 * * *' # was '0 13 * * *' — any non-:00 minute avoids the herd🧪 testcheckout 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🧪 test4 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead. (2 more on a major-version tag like @v4; consider full-SHA pinning there too.)
uses: Chia-Network/actions/setup-python@<full-sha> # was @main📦🚀 Trigger Dev Docker BuildNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15📦🚀 Trigger Dev Docker Build2 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/github/glue@<full-sha> # was @main⚡️ Benchmarks`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7⚡️ Benchmarkscheckout 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⚡️ Benchmarks5 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main🚨 Check Dependency ArtifactsNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🚨 Check Dependency ArtifactsThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }🚨 Check Dependency ArtifactsmacOS 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🚨 Check Dependency Artifacts2 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main🩹 Conflict CheckNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🩹 Conflict CheckRuns on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'🩹 Conflict Check1 third-party action pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: Chia-Network/actions/label-conflict@<full-sha> # was @main📦🚀 Build Installers - MacOS`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7📦🚀 Build Installers - MacOSmacOS 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📦🚀 Build Installers - MacOScheckout 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📦🚀 Build Installers - MacOS6 third-party actions pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead. (1 more on a major-version tag like @v4; consider full-SHA pinning there too.)
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main🚨 Dependency ReviewNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🚨 Check PR LabelsNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15🚨 Check PR LabelsRuns on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'🚨 Check commit signingcheckout 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🚨 Check commit signing1 third-party action pinned to a branch or other mutable ref, which can change under you (supply-chain risk, non-reproducible builds). Pin to a full commit SHA instead.
uses: chia-network/actions/check-commit-signing@<full-sha> # was @mainDependency Cursor Review`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7Dependency Cursor Reviewcheckout 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# No concurrency control (applies to: 🚨 Check PR Labels, 🩹 Conflict Check, 🚨 Dependency Review)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Artifacts at default retention (applies to: 🚨🚀 Lint and upload source distribution, 📦🚀 Build Installer - Windows 10, 📦🚀 Build Installer - Linux RPM AMD64, 📦🚀 Build Installer - Linux DEB, 🧪 test, ⚡️ Benchmarks, 📦🚀 Build Installers - MacOS, Dependency Cursor Review)
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7
# Large build matrix (applies to: 🚨🚀 Lint and upload source distribution, 📦🚀 Build Installer - Linux RPM AMD64, 📦🚀 Build Installer - Linux DEB, 🏗️ Test Install Scripts, 🚨 pre-commit, 🚨 Check Dependency Artifacts)
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }
# Premium runners (macOS / Windows) (applies to: 🚨🚀 Lint and upload source distribution, 📦🚀 Build Installer - Windows 10, 🏗️ Test Install Scripts, 🚨 pre-commit, 🧪 test, 🚨 Check Dependency Artifacts, 📦🚀 Build Installers - MacOS)
jobs:
build:
runs-on: ubuntu-latest # ~10x cheaper than macos-latest
# Third-party actions pinned to a mutable ref (applies to: 🚨🚀 Lint and upload source distribution)
uses: chia-network/actions/clean-workspace@<full-sha> # was @main
# Full-history clone (fetch-depth: 0) (applies to: 📦🚀 Build Installer - Windows 10, 🚨 GitHub Super Linter, 📦🚀 Build Installer - Linux RPM AMD64, 📦🚀 Build Installer - Linux DEB, 🏗️ Test Install Scripts, 🚨 pre-commit, 🧪 test, ⚡️ Benchmarks, 📦🚀 Build Installers - MacOS, 🚨 Check commit signing, Dependency Cursor Review)
- uses: actions/checkout@v4
# fetch-depth: 0 removed — default shallow clone is enough here
# Third-party actions pinned to a mutable ref (applies to: 📦🚀 Build Installer - Windows 10)
uses: Chia-Network/actions/setjobenv@<full-sha> # was @main
# No job timeout (applies to: 🚨 CodeQL, 🏗️ Test Install Scripts, 🧪 test, 📦🚀 Trigger Dev Docker Build, 🚨 Check Dependency Artifacts, 🩹 Conflict Check, 🚨 Dependency Review, 🚨 Check PR Labels)
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
# Third-party actions pinned to a mutable ref (applies to: 📦🚀 Build Installer - Linux RPM AMD64)
uses: Chia-Network/actions/git-mark-workspace-safe@<full-sha> # was @main
# Third-party actions pinned to a mutable ref (applies to: 📦🚀 Build Installer - Linux DEB, 🚨 pre-commit, ⚡️ Benchmarks, 🚨 Check Dependency Artifacts, 📦🚀 Build Installers - MacOS)
uses: Chia-Network/actions/clean-workspace@<full-sha> # was @main
# System packages reinstalled every run (applies to: 🏗️ Test Install Scripts)
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: <your packages>
version: 1.0
# Third-party actions pinned to a mutable ref (applies to: 🏗️ Test Install Scripts, 🧪 test)
uses: Chia-Network/actions/setup-python@<full-sha> # was @main
# Scheduled at the top of the hour (applies to: 🧪 test)
on:
schedule:
- cron: '16 13 * * *' # was '0 13 * * *' — any non-:00 minute avoids the herd
# Third-party actions pinned to a mutable ref (applies to: 📦🚀 Trigger Dev Docker Build)
uses: Chia-Network/actions/github/glue@<full-sha> # was @main
# No path filters on triggers (applies to: 🩹 Conflict Check, 🚨 Check PR Labels)
on:
pull_request:
paths:
- 'src/**'
- 'package.json'
# Third-party actions pinned to a mutable ref (applies to: 🩹 Conflict Check)
uses: Chia-Network/actions/label-conflict@<full-sha> # was @main
# Third-party actions pinned to a mutable ref (applies to: 🚨 Check commit signing)
uses: chia-network/actions/check-commit-signing@<full-sha> # was @mainEach snippet is representative. Merge into the named workflow files rather than pasting wholesale.
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.