Conversation
BenediktBurger
left a comment
There was a problem hiding this comment.
An action version resolves to the most recent compatible version. i.e. v4 to v4.2.3, if that is the most recent one.
| steps: | ||
| - name: Set up Python ${{ inputs.python }} | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v4.2.2 |
There was a problem hiding this comment.
As far as I know, @v4 resolves always to the most recent minor / patch version, so it will use v4.2.2 now and later v4.2.3, once that is released.
So, no need to change it here (unless you want to pin that specific version).
| uses: actions/checkout@v4.2.2 | ||
| - name: Install dependencies | ||
| uses: actions/setup-python@v4 | ||
| uses: actions/setup-python@v5.6.0 |
There was a problem hiding this comment.
| uses: actions/setup-python@v5.6.0 | |
| uses: actions/setup-python@v5 |
Or is there a specific reason for that minor version?
|
@malik-irain could you comment? |
|
@BenediktBurger We can see if tests still pass, etc, and when a new major version of an actions releases, it will also be updated. |
|
I see. |
GitHub Actions Version Updates