Skip to content

Clear caches

Clear caches #23

Workflow file for this run

# Clearing caches regularly takes care of caches growing to problematic size over time
name: Clear caches
on:
schedule:
- cron: '0 4 * * MON'
workflow_dispatch:
permissions:
contents: read
jobs:
clear-caches:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clear all caches
run: gh cache delete --all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}