ci: bump OpenSSL Chocolatey pin to 4.0.2 - #601
Open
kinyoklion wants to merge 1 commit into
Open
Conversation
Co-Authored-By: rlamb@launchdarkly.com <4955475+kinyoklion@users.noreply.github.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
kinyoklion
marked this pull request as ready for review
August 28, 2026 21:00
beekld
approved these changes
Aug 28, 2026
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.
Unbreaks every Windows CI job by pinning the OpenSSL Chocolatey package to a version whose installer still exists upstream.
main(client-sdk, server-sdk, redis, dynamodb, otel, cmake-integration) have failed since 2026-08-26 ininstall-openssl.choco install openssl --version 4.0.1downloadshttps://slproweb.com/download/Win64OpenSSL-4_0_1.exe, which now returns 404; slproweb only hosts the current installer.Implementation details
Root cause: the pin in
.github/actions/install-openssl/action.ymlpoints at a Chocolatey package whose install script fetches a fixed slproweb URL. slproweb deletes installers for superseded versions, so any pin breaks as soon as a new OpenSSL release ships — this is the fourth such bump (#481, #523, #551).Verification:
Win64OpenSSL-4_0_1.exe→ 404,Win64OpenSSL-4_0_2.exe→ 200; Chocolatey'sIsLatestVersionforopensslis 4.0.2.Not in scope: making this durable. Options if we want to stop the recurrence — drop the
--versionflag so Chocolatey always installs latest, or install OpenSSL via vcpkg instead of Chocolatey.Link to Devin session: https://app.devin.ai/sessions/5abfb857e1814bcfb10a862dbb43438f
Open in Devin Desktop: https://app.devin.ai/desktop/session/5abfb857e1814bcfb10a862dbb43438f?variant=devin
Requested by: @kinyoklion
Note
Overview
Restores failing Windows CI by updating the Chocolatey OpenSSL version pin in
install-opensslfrom 4.0.1 to 4.0.2.The previous pin caused
install-opensslto fail because the slproweb installer URL for 4.0.1 now returns 404; 4.0.2’s installer is still available. Linux and macOS steps are unchanged—only the Windowschoco installline is updated.Reviewed by Cursor Bugbot for commit 2132b4b. Bugbot is set up for automated code reviews on this repo. Configure here.