This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
Cleanup Caches #89
This file contains 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: 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 }} |