Skip to content

CI: Clean GH Action caches weekly #53753

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 7, 2023
29 changes: 29 additions & 0 deletions .github/workflows/cache-cleanup-weekly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Purge caches once a week
on:
schedule:
# 4:10 UTC on Sunday
- cron: "10 4 * * 0"

jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Clean Cache
run: |
gh extension install actions/gh-actions-cache

REPO=${{ github.repository }}

echo "Fetching list of cache key"
allCaches=$(gh actions-cache list -L 100 -R $REPO | cut -f 1 )

## Setting this to not fail the workflow while deleting cache keys.
set +e
echo "Deleting caches..."
for cacheKey in $allCaches
do
gh actions-cache delete $cacheKey -R $REPO --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}