Skip to main content

GA-B008: Missing continue-on-error on network step

Info Best Practice

Why This Matters

Steps that fetch external data (curl, wget) can fail due to transient network issues. Adding `continue-on-error: true` prevents the entire workflow from failing due to a non-critical external request.

How to Fix

Add continue-on-error: true to network steps

Before (incorrect)

- run: curl https://api.example.com

After (correct)

- run: curl https://api.example.com
  continue-on-error: true

Rule Details

Rule Code
GA-B008
Severity
Info
Category
Best Practice

Related Rules