fix(deps): update indirect dependencies to latest stable versions #106
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'web/**' | |
| - 'LICENSE' | |
| - '.github/CODEOWNERS' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'web/**' | |
| - 'LICENSE' | |
| - '.github/CODEOWNERS' | |
| workflow_call: | |
| # Cancel in-progress runs for the same branch/PR to avoid wasted resources. | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| CGO_ENABLED: "0" # Match release build settings | |
| steps: | |
| # Pin actions to full SHA for supply-chain security. | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 | |
| with: | |
| go-version: "1.26.x" | |
| - name: Check formatting (gofmt) | |
| run: | | |
| unformatted=$(gofmt -l .) | |
| if [ -n "$unformatted" ]; then | |
| echo "::error::Files need formatting:" | |
| echo "$unformatted" | |
| exit 1 | |
| fi | |
| - name: Check modules tidy | |
| run: | | |
| go mod tidy | |
| git diff --exit-code go.mod go.sum | |
| - name: Check strict formatting (gofumpt) | |
| run: | | |
| go install mvdan.cc/gofumpt@latest || { echo "gofumpt install failed, skipping"; exit 0; } | |
| unformatted=$(gofumpt -l .) | |
| if [ -n "$unformatted" ]; then | |
| echo "::error::Files need strict formatting (gofumpt):" | |
| echo "$unformatted" | |
| exit 1 | |
| fi | |
| - name: Check dead code | |
| run: | | |
| go install golang.org/x/tools/cmd/deadcode@latest || { echo "deadcode install failed, skipping"; exit 0; } | |
| go install github.com/magefile/mage@latest || { echo "mage install failed, skipping"; exit 0; } | |
| mage deadcode | |
| - run: go build ./cmd/dispatch/ | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8 | |
| with: | |
| version: latest | |
| install-mode: goinstall | |
| - run: go vet ./... | |
| - run: go test ./... | |
| - name: Test (race detector) | |
| env: | |
| CGO_ENABLED: "1" | |
| run: go test -race ./... -count=1 | |
| - name: govulncheck | |
| run: | | |
| go install golang.org/x/vuln/cmd/govulncheck@latest | |
| govulncheck ./... | |
| # Verify the binary compiles for all release platforms. | |
| # CGO_ENABLED=0 means cross-compilation is pure Go — no native runners needed. | |
| cross-compile: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' | |
| env: | |
| CGO_ENABLED: "0" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 | |
| with: | |
| go-version: "1.26.x" | |
| - name: Cross-compile all release targets | |
| run: | | |
| for pair in darwin/amd64 darwin/arm64 windows/amd64 windows/arm64; do | |
| os="${pair%/*}" | |
| arch="${pair#*/}" | |
| echo "Building $os/$arch..." | |
| GOOS=$os GOARCH=$arch go build -o /dev/null ./cmd/dispatch/ | |
| done |