What happened?
You appear to set a stableHelmVersion in run.ts. That's problematic because the stable version changes frequently so this action quickly ends up with an outdated stable version.
|
const stableHelmVersion = 'v3.13.3' |
Currently, the "stable" version points at 3.13.3 which has not been the latest stable for 1.5 years (since January 2024): https://github.com/helm/helm/releases/tag/v3.14.0
You should probably call it defaultHelmVersion as stable is misleading.
Also, this version should be updated with every release to not have too much of a gap between actual upstream stable and this action's "stable".
Using old versions means that newly introduced syntax will not work, e.g. --skip-schema-validation, see #187
Version
Runner
default
Relevant log output
NA
What happened?
You appear to set a
stableHelmVersioninrun.ts. That's problematic because the stable version changes frequently so this action quickly ends up with an outdated stable version.setup-helm/src/run.ts
Line 13 in df342a2
Currently, the "stable" version points at 3.13.3 which has not been the latest stable for 1.5 years (since January 2024): https://github.com/helm/helm/releases/tag/v3.14.0
You should probably call it
defaultHelmVersionas stable is misleading.Also, this version should be updated with every release to not have too much of a gap between actual upstream stable and this action's "stable".
Using old versions means that newly introduced syntax will not work, e.g.
--skip-schema-validation, see #187Version
Runner
default
Relevant log output
NA