feat: add 3 new error entries (caching-artifacts x1, runner-environment x2)#413
Merged
Conversation
…nt x2) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New Error Entries — Strategy 1 Round 255 (GitHub Issues Mining)
Sourced from high-engagement open issues in
actions/cacheandactions/checkout.Entries Added
caching-artifacts-150alpine-busybox-tar-p-flag-unsupported.ymlrunner-environment-497checkout-git-config-global-auth-placeholder-fail.ymlrunner-environment-498checkout-v6-credentials-docker-container-action-not-available.ymlEntry Summaries
ca-150 —
actions/cachefails in Alpine containers because BusyBox tar does not support the-P(absolute path) flag used by the action. Error:tar: unrecognized option: P/Tar failed with error: exit code 1. Fix:apk add --no-cache tarbefore cache step.re-497 — When
GIT_CONFIG_GLOBALis set in the runner environment (common self-hosted runner practice), it overridesHOMEwhen git writes credentials. This causesactions/checkout's auth placeholder to be written to the wrong config file, then fail to be found during token substitution. Error:Unable to replace auth placeholder in .../.gitconfig. Fix: unset in checkout stepenvblock.re-498 —
actions/checkout@v6stores credentials via the runner's host-side credential store, which is not mounted inside subsequent Docker container actions. Git auth fails inside the container with "terminal prompts disabled". The v6-beta release notes claimed Docker container support with runner v2.329.0+, but this remains an open bug (June 2026). Fix: useactions/checkout@v4in workflows with Docker container actions.Dedup Verified
30+ dedup checks across all 8 categories before writing. All 3 entries confirmed new.