Skip to content

fix(deps): update go dependencies (#458) #1069

fix(deps): update go dependencies (#458)

fix(deps): update go dependencies (#458) #1069

Workflow file for this run

# Synced from cplieger/ci/.github/workflow-templates/ci.yml — DO NOT EDIT.
# Single CI template for all releaseable repos. The central ci.yaml reusable
# workflow auto-detects repo surfaces (go.mod / jsr.json / Dockerfile / nested
# web frontend) and dispatches to the appropriate reusable workflow. Hybrid
# repos (Go + TS web frontend) run multiple jobs in parallel automatically —
# no per-repo configuration needed.
#
# No paths-ignore: the required status check (ci / validate) can never be
# satisfied if the workflow is skipped by a path filter — GitHub leaves the
# check pending forever, permanently blocking docs-only PRs. The workflow
# therefore always runs; the central ci.yaml gates the heavy language jobs on a
# real code change (so docs-only pushes run only detect + markdown + validate)
# and always runs the markdown lint.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
# Cancel superseded runs on the same ref for PR events only: rapid pushes to a
# PR branch otherwise stack full CI batteries that compete for the account's
# 20 concurrent-job budget. Pushes to main queue instead of cancelling, so
# every main commit keeps a complete validation run.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
ci:
uses: cplieger/ci/.github/workflows/ci.yaml@f32f5781220cca329df97b3df578363747e04259 # v2