Compare commits

..

1 Commits

Author SHA1 Message Date
Ahmet Alp Balkan
3e3ba9946e docs: add description and legacy note to bash --help output
Add a one-line description and a note encouraging users to upgrade
to the Go-based implementation in the bash help messages.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 13:15:07 -07:00

View File

@@ -31,12 +31,12 @@ jobs:
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Go Build Cache
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
- name: Go Mod Cache
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}