-
Notifications
You must be signed in to change notification settings - Fork 182
Open
Description
feature request to require exact version number on a 3rd party action
Why
Example
an opt in feature where this would be invalid:
- run: echo "Checking commit '${{ github.event.head_commit.message }}'"
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node_version: 18.x
and this would be valid
- run: echo "Checking commit '${{ github.event.head_commit.message }}'"
- uses: actions/checkout@v4.2.2
- uses: actions/setup-node@v4.3.0
with:
node_version: 18.x
uchiuzo-sansan and david-mcdowell-ilw
Activity
david-mcdowell-ilw commentedon Jun 3, 2025
This would be a good addition, but it's important to note that the real fix for that related issue is to point to a commit SHA, not just another git tag that can be redirected with malicious code.