Skip to content

Bump @mermaid-js/mermaid-cli from 11.2.1 to 11.3.0 #206

Bump @mermaid-js/mermaid-cli from 11.2.1 to 11.3.0

Bump @mermaid-js/mermaid-cli from 11.2.1 to 11.3.0 #206

Workflow file for this run

name: CI-cleanup-caches
on:
pull_request:
types:
- closed
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
readonly cache_keys=$(gh actions-cache list -R $REPO -B $REF | cut -f1)
set +e
for key in $cache_keys; do
gh actions-cache delete $key -R $REPO -B $REF --confirm
done
set -e
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
REF: refs/pull/${{ github.event.number }}/merge