You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Trusted actions should use a major version, if available.
28794
+
28795
+
* This means the action is owned by github, actions, or smartcontractkit, and if available you should use the major version tag instead of a SHA reference.
28796
+
* For example:
28797
+
* \`actions/checkout@v5\` instead of \`actions/checkout@<sha> # v5.0.0\`
28798
+
* \`smartcontractkit/.github/actions/setup-golang@setup-golang/v1\` instead of \`smartcontractkit/.github/actions/setup-golang@<sha> # setup-golang/v1\`
28799
+
28792
28800
##### <ref> is not a valid SHA
28793
28801
28794
28802
* Please reference a specific commit. This is because tags are mutable and pose a security risk
* The action added is supposed to be run using a version that is not \`node20\`. This might create issues due to Github deprecating actions using \`node16\` and earlier.
28813
+
* The action added is supposed to be run using a version that is not \`node24\`. This might create issues due to Github deprecating actions using \`node20\` and earlier.
28806
28814
28807
28815
</details>
28808
28816
@@ -29203,7 +29211,7 @@ var core7 = __toESM(require_core());
if (nodeVersionParsed < OLDEST_ALLOWABLE_NODE_VERSION) {
29298
29328
return {
29299
-
message: `Action is using node${nodeVersionParsed}`,
29329
+
message: `Action is using node${nodeVersionParsed}. Versions older than node${OLDEST_ALLOWABLE_NODE_VERSION} are being deprecated. Use a newer version of the action if possible.`,
29300
29330
type: "node-version" /* NODE_VERSION */,
29301
29331
severity: "warning"
29302
29332
};
@@ -29548,15 +29578,15 @@ var ActionsCacheVersionValidation = class {
0 commit comments