Skip to content

chore(deps): bump github/codeql-action from 3.25.15 to 3.26.0 #95

chore(deps): bump github/codeql-action from 3.25.15 to 3.26.0

chore(deps): bump github/codeql-action from 3.25.15 to 3.26.0 #95

Workflow file for this run

name: Clean up per-branch caches
on:
pull_request:
types:
- closed
workflow_dispatch:
permissions:
contents: read
jobs:
cleanup:
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
BRANCH=refs/pull/${{ github.event.pull_request.number }}/merge
echo "Fetching list of cache keys"
keys=$(gh actions-cache list -R $GITHUB_REPOSITORY -B $BRANCH -L 100 | cut -f 1)
set +e
echo "Deleting caches..."
for key in $keys ; do
gh actions-cache delete $key -R $GITHUB_REPOSITORY -B $BRANCH --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}