CI: modernize functional-test workflows (runner + checkout) - #110
Open
VincenzoImp wants to merge 2 commits into
Open
CI: modernize functional-test workflows (runner + checkout)#110VincenzoImp wants to merge 2 commits into
VincenzoImp wants to merge 2 commits into
Conversation
GitHub Actions has removed the ubuntu-20.04 hosted runner image, so the Backend-Client-Functional-Tests job never gets scheduled and sits queued indefinitely. Bump the label to ubuntu-22.04 so the job runs again.
Update the two workflows still pinned to actions/checkout@v3 (django_functional_tests.yml and backend-client-functional-tests.yml) to @v4, aligning them with docker-release.yml and build-deploy-documentation.yml which already use v4. checkout@v3 runs on the deprecated Node 16 runtime.
This was referenced Jul 4, 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.
Summary
Two small CI updates to the functional-test workflows, grouped because they touch the same files.
1. Runner bump (was PR #103)
backend-client-functional-tests.ymlusedubuntu-20.04, which GitHub has retired, so the job could no longer be scheduled. It now runs onubuntu-22.04.22.04is chosen overubuntu-latestbecause the job uses Compose v1 (docker-compose), which is not present on theubuntu-24.04image behindubuntu-latest.2. checkout bump (was PR #107)
actions/checkoutis bumped fromv3tov4inbackend-client-functional-tests.ymlanddjango_functional_tests.yml, aligning them with the other workflows already onv4.checkout@v3runs on the deprecated Node 16 runtime.Notes
Supersedes #103 and #107 (both edit the functional-test workflows; merged here to avoid a needless "update branch" step between them). CI-only, no functional impact.