Overview
Currently the vulnerability check job is failing due to the incompatibility with govulncheck tool, as the current version support go >= 1.25.0, but the current project module's go version is 1.24.8 (ref)
The problem is noticed in this action (ref) where the current job pulls the latest version which is incompatible and causing the above error (ref).
Expected Solution
Need to bump the version from 1.24.8 to 1.26.2
NOTE: Also, with compatibility considerations, just apart from updating the module, it is must to ensure that the project isn't broken, as a major version bump may introduce breaking changes too.
Overview
Currently the
vulnerability checkjob is failing due to the incompatibility withgovulnchecktool, as the current version support go >= 1.25.0, but the current project module's go version is 1.24.8 (ref)The problem is noticed in this action (ref) where the current job pulls the latest version which is incompatible and causing the above error (ref).
Expected Solution
Need to bump the version from
1.24.8to1.26.2