Skip to content

Cleanup caches every Sunday and Wednesday #127

Cleanup caches every Sunday and Wednesday

Cleanup caches every Sunday and Wednesday #127

Workflow file for this run

name: Cleanup caches every Sunday and Wednesday
on:
release:
types: [released]
schedule:
- cron: '0 6 * * 0,4'
workflow_dispatch:
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
REPO=${{ github.repository }}
echo "Fetching list of cache key"
cacheKeys=$(gh cache list -R $REPO -S last_accessed_at | cut -f 1 )
# Setting this to not fail the workflow while deleting cache keys.
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeys
do
gh cache delete $cacheKey -R $REPO --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}