Skip to content

Cleanup: CCache

Cleanup: CCache #2970

name: 'Cleanup: CCache'
on:
workflow_dispatch:
schedule:
- cron: '30 * * * *'
jobs:
cleanup_ccache:
runs-on: ubuntu-slim
permissions:
actions: write
contents: read
pull-requests: read
steps:
- name: Clone repository
uses: actions/checkout@v6
with:
sparse-checkout: buildscripts/ci/tools/cleanup_ccache.py
- name: Cleanup ccache
run: buildscripts/ci/tools/cleanup_ccache.py
env:
GH_TOKEN: ${{ github.token }}