Pin floating action refs to SHAs#8
Merged
Merged
Conversation
This was referenced Mar 28, 2026
… 9 which is absent on CodeBuild runners
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.
Summary
opentap/setup-opentapandactions/checkoutinaction.ymlwere using floating tag referencesactions/checkoutin.github/workflows/test.ymlwas using a floating tag referenceDetails
action.ymlopentap/setup-opentap@main@6eee68cf35f2e861f93d21029bbe7af4c427b9bd(v1.1, main branch)action.ymlversion9.25.0(.NET 6)9.28.3(.NET 9)action.ymlactions/checkout@v4@de0fac2e4500dabe0009e67214ff5f5447ce83dd(v6.0.2)test.ymlactions/checkout@v2@de0fac2e4500dabe0009e67214ff5f5447ce83dd(v6.0.2)test.ymlruns-onubuntu-latestubuntu-24.04Motivation
The upgrade of
actions/checkoutfrom v4 to v6 in the internalaction.ymlalso fixes a compatibility issue:actions/checkout@v6introduced a new credential persistence mechanism that conflicts with the previously used@v4inside this action, causing a duplicate Authorization header → HTTP 400 error in downstream repos that useactions/checkout@v6in their outer workflow.ubuntu-latest→ubuntu-24.04intest.yml:GitHub-hosted runners have no SHA equivalent. Pinning to a versioned label like
ubuntu-24.04is the closest equivalent — it won't silently move to a new OS version the wayubuntu-latestdoes when GitHub rolls out a migration (over 1–2 months).ubuntu-latestcurrently resolves toubuntu-24.04, so there is no functional difference today.opentap/setup-opentapSHA points tomainbranch (to be tagged asv1.1):mainbranch includes the merged PR#19 which upgrades the action's Node.js runtime fromnode20tonode24, fixes deprecatedubuntu-20.04runners, and pinsactions/checkoutto a SHA. The SHA will be updated to thev1.1tag once it is cut.