ci(deps): bump carabiner-dev/actions from 1.2.1 to 1.2.3 - #138
Merged
marcusburghardt merged 2 commits intoJul 23, 2026
Merged
Conversation
Bump install/snappy and install/ampel together to v1.2.3. These actions are co-released from the carabiner-dev/actions monorepo and must be updated atomically — bumping them individually (as Dependabot does) creates a version mismatch that breaks the cross-repo integration test. Supersedes: complytime#134, complytime#135 Assisted-by: OpenCode (claude-opus-4-6) Signed-off-by: Yvonne Devlin <ydevlin@redhat.com>
This was referenced Jul 23, 2026
The v1.2.3 add-to-path step writes unexpanded $HOME to
GITHUB_PATH when using the default install-dir, making snappy
and ampel invisible to subsequent steps. Use an explicit
absolute path until the upstream fix lands.
Note: ${{ env.HOME }} (used in org-infra#453) resolves to empty
in non-reusable workflow contexts, producing "/.carabiner".
Use the hardcoded /home/runner path (matching complyctl#760)
for direct workflow steps.
Assisted-by: OpenCode (claude-opus-4-6)
Signed-off-by: Yvonne Devlin <ydevlin@redhat.com>
yvonnedevlinrh
force-pushed
the
ci/bump-carabiner-actions-1.2.3
branch
from
July 23, 2026 08:51
d51dfef to
fd71449
Compare
hbraswelrh
approved these changes
Jul 23, 2026
hbraswelrh
left a comment
Member
There was a problem hiding this comment.
LGTM. CI failure is pre-existing.
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.
Bump
install/snappyandinstall/ampeltogether from v1.2.1 to v1.2.3.Why a combined PR?
These actions are co-released from the
carabiner-dev/actionsmonorepo and share release tags. Dependabot generates individual PRs for each action path, but bumping them independently creates a version mismatch that breaks the cross-repo integration test:Error: provider ampel (evaluator "ampel"): required tools not found: snappy
This PR supersedes #134 and #135 by updating both action pins atomically.
Changes
install/snappy94f2939...(v1.2.1)2a4b2cd...(v1.2.3)install/ampel94f2939...(v1.2.1)2a4b2cd...(v1.2.3)Both actions now set
install-dir: ${{ env.HOME }}/.carabinerexplicitly to work around an upstream bug in v1.2.3 where the default$HOME/.carabineris written unexpanded toGITHUB_PATH, making installed tools invisible to subsequent steps. The${{ env.HOME }}expression is resolved at the GitHub Actions runner level to an absolute path, matching the fix in complytime/org-infra#453.Upstream release notes
Closes #134, closes #135