Skip to content

Commit 9775b51

Browse files
committed
Use new arduino/setup-task action name in CI/CD workflows
The GitHub Actions action for installing Task has graduated from its original home in the experimental `arduino/action` repository with a move to a dedicated permanent repository at `arduino/setup-task`. A 1.0.0 release has been made and a `v1` ref that will track all releases in the major version 1 series. Use of the action's major version ref will cause the workflow to benefit from ongoing development to the action at each patch or minor release up until such time as a new major release is made. At this time the user will be given the opportunity to evaluate whether any changes to the workflow are required by the breaking change that triggered the major release before manually updating the major ref in the workflows (e.g., `uses: arduino/setup-task@v2`).
1 parent cb1f51a commit 9775b51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717

1818
- name: Install Taskfile
19-
uses: arduino/actions/setup-taskfile@master
19+
uses: arduino/setup-task@v1
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222
version: 3.x

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

1717
- name: Install Taskfile
18-
uses: arduino/actions/setup-taskfile@master
18+
uses: arduino/setup-task@v1
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
2121
version: 3.x

0 commit comments

Comments
 (0)