Skip to content

Commit 73dee6e

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 234ed2d commit 73dee6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
go get -u github.com/sanbornm/go-selfupdate/...
7878
7979
- name: Install Taskfile
80-
uses: arduino/actions/setup-taskfile@master
80+
uses: arduino/setup-task@v1
8181
with:
8282
version: '3.x'
8383
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
go get golang.org/x/lint/golint
4646
4747
- name: Install Taskfile
48-
uses: arduino/actions/setup-taskfile@master
48+
uses: arduino/setup-task@v1
4949
with:
5050
version: '3.x'
5151
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)