GitHub is migrating all actions from Node 12 to Node 16 and is raising warnings for actions still using Node 12. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Update the version accordingly.
16 lines
347 B
YAML
16 lines
347 B
YAML
name: "arduino/setup-task"
|
|
description: "Download Task and add it to the PATH"
|
|
author: "Arduino"
|
|
inputs:
|
|
version:
|
|
description: "Version to use. Example: 3.4.2"
|
|
required: true
|
|
default: "3.x"
|
|
repo-token:
|
|
description: "Token with permissions to do repo things"
|
|
required: false
|
|
|
|
runs:
|
|
using: "node16"
|
|
main: "dist/index.js"
|