ci: bump GitHub Actions to latest major versions#590
Merged
oleg-jukovec merged 2 commits intomasterfrom May 5, 2026
Merged
Conversation
Update third-party actions used in workflows to the current major releases so we benefit from upstream bug fixes, Node.js runtime updates, and security patches. - actions/checkout v5 -> v6 - actions/setup-go v5 -> v6 - actions/cache v4 -> v5 - actions/download-artifact v5 -> v8
The shared `timeout = defaultCountRetry * tick` constant in pool/pool_test.go was 2.5s (5 × 500ms). On macOS-15 with the race detector enabled this was still insufficient for the Eventuallyf check in TestHandlerUpdateError, which hit the deadline (~2.56s) waiting for the pool's background role-update cycle to mark connections as not-connected after switching the cluster to read-only. Bump defaultCountRetry from 5 to 20 to extend the shared timeout to 10s. The poll interval (`tick`) is unchanged, so a higher ceiling adds no cost on the happy path while giving slow CI runners enough headroom. Related to #591
oleg-jukovec
approved these changes
May 5, 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.
Update third-party actions used in workflows to the current major releases so we benefit from upstream bug fixes, Node.js runtime updates, and security patches.