Skip to content

Commit

Permalink
lint corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
cfkoehler committed Jun 6, 2024
1 parent a5ab68b commit ea42929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/action-cache-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
echo 'Fetching list of cache key'
echo ""Fetching list of cache key""
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
## Setting this to not fail the workflow while deleting cache keys.
set +e
echo 'Deleting caches...'
echo "Deleting caches..."
for cacheKey in $cacheKeysForPR
do
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
Expand Down

0 comments on commit ea42929

Please sign in to comment.