Skip to content

Commit 9fa7e61

Browse files
sebbalexjoshmgross
andauthored
Update force deletion docs due a recent deprecation (#1500)
* fix: update force deletion docs due a recent deprecation * fix: applied josh's suggestions --------- Co-authored-by: Josh Gross <[email protected]>
1 parent 36f1e14 commit 9fa7e61

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

tips-and-workarounds.md

+6-13
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ From `v3.2.3` cache is cross-os compatible when `enableCrossOsArchive` input is
3737

3838
## Force deletion of caches overriding default cache eviction policy
3939

40-
Caches have [branch scope restriction](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache) in place. This means that if caches for a specific branch are using a lot of storage quota, it may result into more frequently used caches from `default` branch getting thrashed. For example, if there are many pull requests happening on a repo and are creating caches, these cannot be used in default branch scope but will still occupy a lot of space till they get cleaned up by [eviction policy](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy). But sometime we want to clean them up on a faster cadence so as to ensure default branch is not thrashing. In order to achieve this, [gh-actions-cache cli](https://github.com/actions/gh-actions-cache/) can be used to delete caches for specific branches.
40+
Caches have [branch scope restriction](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache) in place. This means that if caches for a specific branch are using a lot of storage quota, it may result into more frequently used caches from `default` branch getting thrashed. For example, if there are many pull requests happening on a repo and are creating caches, these cannot be used in default branch scope but will still occupy a lot of space till they get cleaned up by [eviction policy](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy). But sometime we want to clean them up on a faster cadence so as to ensure default branch is not thrashing.
4141

42-
This workflow uses `gh-actions-cache` to delete all the caches created by a branch.
4342
<details>
4443
<summary>Example</summary>
4544

@@ -60,29 +59,23 @@ jobs:
6059
actions: write
6160
contents: read
6261
steps:
63-
- name: Check out code
64-
uses: actions/checkout@v4
65-
6662
- name: Cleanup
6763
run: |
68-
gh extension install actions/gh-actions-cache
69-
70-
REPO=${{ github.repository }}
71-
BRANCH=refs/pull/${{ github.event.pull_request.number }}/merge
72-
7364
echo "Fetching list of cache key"
74-
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 )
65+
cacheKeysForPR=$(gh cache list --ref $BRANCH --limit 100 --json id --jq '.[].id')
7566
76-
## Setting this to not fail the workflow while deleting cache keys.
67+
## Setting this to not fail the workflow while deleting cache keys.
7768
set +e
7869
echo "Deleting caches..."
7970
for cacheKey in $cacheKeysForPR
8071
do
81-
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
72+
gh cache delete $cacheKey
8273
done
8374
echo "Done"
8475
env:
8576
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77+
GH_REPO: ${{ github.repository }}
78+
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
8679
```
8780
8881
</details>

0 commit comments

Comments
 (0)