commit ef786819d823cd662e0e6261c2c9ed7c1e581be7 from: Alisdair MacLeod via: Alisdair MacLeod <131350026+admacleod@users.noreply.github.com> date: Wed Mar 25 16:58:01 2026 UTC Replace vmactions/openbsd-vm with cross-platform-actions/action vmactions/openbsd-vm has a known reliability issue (vmactions/openbsd-vm#11) where the SSH connection to the VM drops mid-test, causing SIGPIPE failures. cross-platform-actions/action is faster and more stable. Co-Authored-By: Claude Opus 4.6 (1M context) commit - 50af281a189d13ce6e0d8bd8c06798ec2181338e commit + ef786819d823cd662e0e6261c2c9ed7c1e581be7 blob - 23bddb7ba5b7be6ad1507ccd27a8559d4395d3b1 blob + a425c4655693e1be063b0fc4564cc195e246559d --- .github/workflows/ci.yml +++ .github/workflows/ci.yml @@ -10,8 +10,10 @@ jobs: - uses: actions/checkout@v6 with: persist-credentials: false - - uses: vmactions/openbsd-vm@v1 + - uses: cross-platform-actions/action@v0.32.0 with: - prepare: | - pkg_add sqlite3 - run: make test + operating_system: openbsd + version: '7.8' + run: | + sudo pkg_add sqlite3 + make test