Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Cleanup Caches

Cleanup Caches #87

Workflow file for this run

name: Cleanup Caches
on:
schedule:
- cron: '0 0 */2 * *' # every 2 days at midnight (UTC)
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install GitHub CLI extension
run: gh extension install actions/gh-actions-cache
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup all caches
run: |
REPO=${{ github.repository }}
echo "Fetching list of cache keys"
cacheKeys=$(gh actions-cache list -R $REPO | cut -f 1 )
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeys
do
gh actions-cache delete $cacheKey -R $REPO --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}