-
-
Notifications
You must be signed in to change notification settings - Fork 7
🚧Update checkout actions #129
Copy link
Copy link
Closed
Labels
Milestone
Description
Complete The Item Below
- I have updated the title without removing the 🚧 emoji.
Description
Update all of the workflow checkout actions to the latest version which is v3.
Reason:
GitHub is moving away from Node v12 to Node v16. Due to this change, GitHub is updating all of its actions to support Node v16 which is part of the process of moving away from Node v12.
More info here
What To Do:
Update all of the checkout actions from v2 to v3. These changes exist in all of the workflows. (yml files) in the project and can be located in the ./.github/workflows folder.
The update can be performed by updating these workflows. Go into each workflow and look for actions/checkout@v2 and change it to actions/checkout@v3. Please take a look at the example below for the build-pr-status-check.yml file.
The Change:
- actions/checkout@v2
+ actions/checkout@v3Acceptance Criteria
- All workflows updated to use latest version of checkout action
ToDo Items
- Change type labels added to this issue. Refer to the Change Type Labels section below.
- Priority label added to this issue. Refer to the Priority Type Labels section below.
- Issue linked to the correct project (if applicable).
- Issue linked to the correct milestone (if applicable).
- Draft pull request created and linked to this issue (only required with code changes).
Issue Dependencies
No response
Related Work
No response
Additional Information:
Change Type Labels
| Change Type | Label |
|---|---|
| Bug Fixes | 🐛bug |
| Breaking Changes | 🧨breaking changes |
| New Feature | ✨new feature |
| Workflow Changes | workflow |
| Code Doc Changes | 🗒️documentation/code |
| Product Doc Changes | 📝documentation/product |
Priority Type Labels
| Priority Type | Label |
|---|---|
| Low Priority | low priority |
| Medium Priority | medium priority |
| High Priority | high priority |
Code of Conduct
- I agree to follow this project's Code of Conduct.
Reactions are currently unavailable