Warnings have started appearing on some actions workflows about versions. An example is on this execution.
It says: Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-dotnet@v1
This specific run is of the release workflow, but it's almost certainly on multiple. The action required here would be:
Find if the offending actions (actions/checkout and actions/setup-dotnet) have a newer version that uses Node16
Update workflow files to reference those higher versions
Run the workflows (e.g. make a PR... @CBielstein can run a release to verify when the time is right for the release action) to observe no warnings
Acceptance Criteria:
No workflows display Node12 deprecation warnings after execution
Warnings have started appearing on some actions workflows about versions. An example is on this execution.
It says:
Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-dotnet@v1
This specific run is of the release workflow, but it's almost certainly on multiple. The action required here would be:
Acceptance Criteria: