ci: upgrade the GitHub Actions to versions that run on Node 24 - #153
Merged
Conversation
The workflows use action versions from 2021 and 2022. These actions run on the node12 and node16 runtimes. GitHub removes old runtimes. When that happens, the chart release and the PR checks stop. Bump each action to the current major version. Keep the release behaviour: the chart releaser still runs on a push to main, and CR_SKIP_EXISTING stays true. Keep the kind matrix. Linear: PROD-10245
The job never runs. Its condition tests a list of label objects against a string, so the test is always false. The job reports "skipped" in all of the last 25 workflow runs. The action is also a dead end for this upgrade. v0.16.4 is the newest release, it runs on node20, and the repository has no commit since September 2024. Linear: PROD-10245
charliedowler
force-pushed
the
feature/prod-10245
branch
from
August 17, 2026 22:16
087700c to
09bd64f
Compare
charliedowler
marked this pull request as ready for review
August 17, 2026 22:24
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.
What this does
The workflows use action versions from 2021 and 2022. These actions run on the node12 and node16 runtimes inside the runner. GitHub removes old runtimes over time. When that happens the chart release stops and the PR checks stop. Self-hosted users who wait for a chart release notice first.
This PR bumps each action to the current major version. It also removes one dead job. It changes no working behaviour.
The bumps
actions/checkoutactions/setup-pythonazure/setup-helmhelm/chart-testing-actionhelm/kind-actionhelm/chart-releaser-actionstefanzweifel/git-auto-commit-actionEvery remaining action runs on node24 or runs as a composite action with no Node runtime.
Removing the automerge job
The
automergejob never runs, so this PR deletes it and dropspascalgn/automerge-actionwith it. Its condition testscontains(github.event.pull_request.labels, 'merge after testing'), butlabelsholds objects and not strings, so the test is always false. The job reportsskippedin all of the last 25 workflow runs. The action is also a dead end for this upgrade: v0.16.4 is the newest release, it runs on node20, and the repository has no commit since September 2024.mainhas no branch protection and no ruleset, so no required check depends on this job. The workflow keeps its current name to hold the check names steady.What stays the same
CR_SKIP_EXISTING: truestays.ct lintandct installcommands stay.Breaking input checks
I compared the
action.ymlinputs at the old tag and the new tag for each action.helm/chart-releaser-actionv1.7.0 adds askip_existinginput. The action appends--skip-existingonly when that input is not empty. The input stays unset, socrreadsCR_SKIP_EXISTINGfrom the environment as before. The env var keeps working.helm/kind-actionrenameslog_leveltoverbosity. The workflow does not set it.node_imageandcluster_nameare unchanged.azure/setup-helmmakes thetokeninput optional. Both steps pin an explicit helm version, so the action makes no API call for the latest release.actions/setup-pythonv7 does not supply python 3.7. Python 3.7 is end of life. The version moves to 3.13.chart-testing-actionstill needs python because it installsyamllintandyamalewith pip.stefanzweifel/git-auto-commit-actionv7.2.0 keeps every v4 input. The defaults for the commit author change fromGitHub Actions <actions@github.com>togithub-actions[bot]. The workflow sets neither, so the docs commit gets the bot identity. This is the only visible change in behaviour.Out of scope
docker://jnorwood/helm-docs:v1.7.0is a container action. It runs no Node runtime, so this PR leaves it alone.Coordination with #150
PR #150 is open. It rewrites
lint-and-test-charts.ymlandci-release.yml, and it already carries most of these bumps. I used the same version strings as #150 so the overlapping lines match.After #150 lands, two changes in this PR remain new:
generate-helm-docs.yml, which ci: test installs and upgrades, gate the auto-release, modernise the matrix #150 does not touch.automergejob, which ci: test installs and upgrades, gate the auto-release, modernise the matrix #150 keeps.This PR must rebase onto main after #150 merges, before it leaves draft.
Linear: PROD-10245