Skip to content

chore(deps): bump uuid from 11.1.1 to 14.0.1 #2839

chore(deps): bump uuid from 11.1.1 to 14.0.1

chore(deps): bump uuid from 11.1.1 to 14.0.1 #2839

Workflow file for this run

name: pr cleanup
# This workflow cleans up cache entries when a pull request is closed
# It runs the clear-cache action to remove cached build artifacts and dependencies
# for the specific PR branch to free up storage space and prevent cache bloat
#
# Why these permissions are needed:
# - contents: read - Required to checkout the repository
# - actions: write - Required for gh actions-cache delete command in clear-cache action
permissions:
contents: read
# Required for gh actions-cache delete command in clear-cache action
actions: write
on:
pull_request:
types:
- closed
jobs:
cleanup:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v7
- name: clear pull request cache
uses: ./.github/actions/clear-cache
with:
branch: refs/pull/${{ github.event.pull_request.number }}/merge