Closed matthyx closed 7 months ago
PR Description updated to latest commit (https://github.com/kubescape/kubevuln/commit/0fd896320ee0344ea971b60dfdc9d0cad53e752a)
⏱️ Estimated effort to review [1-5] | 1, because the PR involves a straightforward version update of a GitHub Action used in the project's workflow. The change is minimal and localized to a single line in the `.github/workflows/scorecard.yml` file. |
🧪 Relevant tests | No |
🔍 Possible issues | No |
🔒 Security concerns | No |
Category | Suggestions |
Best practice |
Use version tags instead of commit hashes for GitHub Actions to ensure stability.___ **It is recommended to use tags that are linked to releases instead of commit hashes forGitHub Actions. This ensures that the version used is stable and intended for public use. Replace the commit hash with a version tag, if available, for the ossf/scorecard-action .**
[.github/workflows/scorecard.yml [40]](https://github.com/kubescape/kubevuln/pull/221/files#diff-2e3112f4e81a9c47df8000638ce3b1b9ca15edcc82b228c207a7a4ff3bc7133fR40-R40)
```diff
-uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1
+uses: ossf/scorecard-action@v2.3.1
```
|
Type
enhancement
Description
ossf/scorecard-action
(v2.3.1
). This update may include bug fixes, new features, and performance improvements.Changes walkthrough
scorecard.yml
Update ossf/scorecard-action to v2.3.1
.github/workflows/scorecard.yml - Updated the `ossf/scorecard-action` to version `v2.3.1`.