feat: update arduino/setup-task to go-task/action

This commit is contained in:
Pete Davison
2025-09-09 16:59:50 +00:00
parent 17d91520b6
commit d100fbbfa8
15 changed files with 25 additions and 25 deletions

View File

@@ -29,9 +29,9 @@ body:
- type: input
id: project-version
attributes:
label: "'arduino/setup-task' version"
label: "'go-task/action' version"
description: |
Which version of `arduino/setup-task` are you using?
Which version of `go-task/action` are you using?
_This should be the most recent version available._
validations:
required: true
@@ -48,7 +48,7 @@ body:
label: Issue checklist
description: Please double-check that you have done each of the following things before submitting the issue.
options:
- label: I searched for previous reports in [the issue tracker](https://github.com/arduino/setup-task/issues?q=)
- label: I searched for previous reports in [the issue tracker](https://github.com/go-task/action/issues?q=)
required: true
- label: I verified the problem still occurs when using the latest version
required: true

View File

@@ -4,7 +4,7 @@
blank_issues_enabled: false
contact_links:
- name: Learn about using this project
url: https://github.com/arduino/setup-task#readme
url: https://github.com/go-task/action#readme
about: Detailed usage documentation is available here.
- name: Learn about GitHub Actions
url: https://docs.github.com/actions

View File

@@ -17,16 +17,16 @@ body:
attributes:
label: Describe the current behavior
description: |
What is the current behavior of `arduino/setup-task` in relation to your request?
What is the current behavior of `go-task/action` in relation to your request?
How can we reproduce that behavior?
validations:
required: true
- type: input
id: project-version
attributes:
label: "'arduino/setup-task' version"
label: "'go-task/action' version"
description: |
Which version of `arduino/setup-task` are you using?
Which version of `go-task/action` are you using?
_This should be the most recent version available._
validations:
required: true
@@ -43,7 +43,7 @@ body:
label: Issue checklist
description: Please double-check that you have done each of the following things before submitting the issue.
options:
- label: I searched for previous requests in [the issue tracker](https://github.com/arduino/setup-task/issues?q=)
- label: I searched for previous requests in [the issue tracker](https://github.com/go-task/action/issues?q=)
required: true
- label: I verified the feature was still missing when using the latest version
required: true

View File

@@ -38,7 +38,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -52,7 +52,7 @@ jobs:
uses: xt0rted/markdownlint-problem-matcher@v3
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x
@@ -73,7 +73,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -85,7 +85,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x
@@ -142,7 +142,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -40,7 +40,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x
@@ -61,7 +61,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -214,7 +214,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -46,7 +46,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -52,7 +52,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -32,7 +32,7 @@ jobs:
run: pip install poetry
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -55,7 +55,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x
@@ -76,7 +76,7 @@ jobs:
node-version-file: package.json
- name: Install Task
uses: arduino/setup-task@v2
uses: go-task/action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

View File

@@ -85,6 +85,6 @@ See [step-debug-logs](https://github.com/actions/toolkit/blob/master/docs/action
Instructions for releasing a new version of the action:
1. If the release will increment the major version, update the action refs in the examples in README.md (e.g., `uses: arduino/setup-task@v1` -> `uses: arduino/setup-task@v2`).
1. If the release will increment the major version, update the action refs in the examples in README.md (e.g., `uses: go-task/action@v1` -> `uses: go-task/action@v2`).
1. Create a [GitHub release](https://docs.github.com/en/github/administering-a-repository/managing-releases-in-a-repository#creating-a-release), following the `vX.Y.Z` tag name convention. Make sure to follow [the SemVer specification](https://semver.org/).
1. Rebase the release branch for that major version (e.g., `v1` branch for the `v1.x.x` tags) on the tag. If no branch exists for the release's major version, create one.

View File

@@ -1,6 +1,6 @@
name: "arduino/setup-task"
name: "go-task/action"
description: "Download Task and add it to the PATH"
author: "Arduino"
author: "Task"
inputs:
version:
description: "Version to use. Example: 3.4.2"

View File

@@ -5,7 +5,7 @@
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/arduino/setup-task.git"
"url": "git+https://github.com/go-task/action.git"
},
"keywords": [
"actions",