Skip to content

Commit

Permalink
Update clear_cache.yml
Browse files Browse the repository at this point in the history
Arguments needed to be strings.
  • Loading branch information
jasigal authored Jun 6, 2024
1 parent f4b0133 commit 69858c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clear_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
const caches = await github.rest.actions.getActionsCacheList({
owner: context.repo.owner,
repo: context.repo.repo,
sort: size_in_bytes,
direction: desc,
sort: "size_in_bytes",
direction: "desc",
per_page: 100,
})
for (const cache of caches.data.actions_caches) {
Expand Down

0 comments on commit 69858c0

Please sign in to comment.