mirror of
https://github.com/nektos/act.git
synced 2026-04-26 09:25:54 +03:00
[GH-ISSUE #2028] Limit artifactcache by size #972
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#972
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @krombel on GitHub (Sep 26, 2023).
Original GitHub issue: https://github.com/nektos/act/issues/2028
Act version
unrelated
Feature description
It would be nice to be able to automatically cleanup artifactcache based on used cache size.
Currently here are the gc thresholds are statically implemented:
github.com/nektos/act@2be4def7be/pkg/artifactcache/handler.go (L442-L444)Besides being able to configure them somehow to something different I would like to limit the size the cache is using.
It would be fine at least for me to implement this as an additional step in gcCache() so to have it cleaned up after an interval instead of enforcing it to a specific amount in the moment an additional cache entry is about to being added. This way it at least would help in resource planning.