From 558b26a2769bc0d956d6e2c6e299941a35a95bed Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Sat, 14 Mar 2026 21:48:44 -0300 Subject: [PATCH] fix script name --- .ci/{gh_buildkit_cache_usage.sh => gha_cache_usage.sh} | 2 +- .github/workflows/cache-report.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename .ci/{gh_buildkit_cache_usage.sh => gha_cache_usage.sh} (97%) diff --git a/.ci/gh_buildkit_cache_usage.sh b/.ci/gha_cache_usage.sh similarity index 97% rename from .ci/gh_buildkit_cache_usage.sh rename to .ci/gha_cache_usage.sh index 5800b69a5..2f30a4a00 100755 --- a/.ci/gh_buildkit_cache_usage.sh +++ b/.ci/gha_cache_usage.sh @@ -1,7 +1,7 @@ #!/bin/bash # Reports GitHub Actions cache usage, grouped by key prefix (first segment before "-" or "/") or for one prefix. # -# Usage: .ci/gh_buildkit_cache_usage.sh [-m|--markdown] [key-prefix] +# Usage: .ci/gha_cache_usage.sh [-m|--markdown] [key-prefix] # -m, --markdown output as a markdown table # No key-prefix: all caches grouped by prefix. # One arg: caches with that key prefix (default buildkit-blob). diff --git a/.github/workflows/cache-report.yml b/.github/workflows/cache-report.yml index 201cbd346..d461f6b93 100644 --- a/.github/workflows/cache-report.yml +++ b/.github/workflows/cache-report.yml @@ -1,5 +1,5 @@ # Reports GitHub Actions cache usage grouped by key prefix (e.g. buildkit, ccache, vcpkg). -# Run locally: .ci/gh_buildkit_cache_usage.sh +# Run locally: .ci/gha_cache_usage.sh name: Cache usage report @@ -27,5 +27,5 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - ./.ci/gh_buildkit_cache_usage.sh --markdown | tee report.txt + ./.ci/gha_cache_usage.sh --markdown | tee report.txt cat report.txt >> "$GITHUB_STEP_SUMMARY"