Upgraded dependencies, pinned SHAs, bump node to 24, run on ubuntu:latest#19
Merged
Conversation
This was referenced Mar 28, 2026
…x incompatibility
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
action.ymlwas usingnode20as the JavaScript runtimeusing: 'node20'→using: 'node24'The
index.jsuses only@actions/core,@actions/exec,@actions/io, and@actions/tool-cachewhich are all Node-version agnostic — no rebuild required.Test workflow changes
package.jsonversion to1.1.0ubuntu-20.04runner withubuntu-24.04across all jobs — pinned to a specific LTS label rather thanubuntu-latest, which silently moves to the next LTS when GitHub rolls out a migration (over 1–2 months). GitHub-hosted runners have no SHA equivalent; the versioned label (e.g.ubuntu-24.04) is the closest equivalent to a pin.actions/checkoutto SHAde0fac2e(v6.0.2)OpenTAP bumped from
9.17.0to9.32.3in the Linux jobs:The old version
9.17.0triggered a resolver bug whereDemonstration:anyresolves to9.1.0, which depends onWPF Controls ^9.31.0-rc.2+c39a4f1f. That package is published asAnyCPUonly, and the OpenTAP resolver in9.17.0incorrectly fails to match it againstx64Linux (exit code 33). This bug is fixed in recent versions of OpenTAP, so upgrading to9.32.3resolves it without needing to pin any packages.Container image bumped from
dotnet/sdk:8.0todotnet/sdk:9.0:OpenTAP switched from .NET 6 to .NET 9 between versions
9.28.3and9.29.0(skipping .NET 8 entirely). Running OpenTAP9.32.3inside thedotnet/sdk:8.0container fails with exit code 150 (.NET 9.0.0 runtime not found). Updating the container todotnet/sdk:9.0aligns it with OpenTAP's current runtime requirement.