CBielstein / APRSsharp

APRS# - Modern APRS software for the amateur radio community
MIT License
12 stars 5 forks source link

Update GitHub Actions workflows to use Node16 instead of Node12 #139

Closed CBielstein closed 1 year ago

CBielstein commented 1 year ago

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:

  1. Find if the offending actions (actions/checkout and actions/setup-dotnet) have a newer version that uses Node16
  2. Update workflow files to reference those higher versions
  3. 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: