Skip to content

Commit 2fc5668

Browse files
authored
Use new arduino/setup-task action name in CI/CD workflows (#35)
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 f88c4b3 commit 2fc5668

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/link-validation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
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

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
changelog-file-path: "dist/CHANGELOG.md"
2525

2626
- name: Install Taskfile
27-
uses: arduino/actions/setup-taskfile@master
27+
uses: arduino/setup-task@v1
2828
with:
2929
repo-token: ${{ secrets.GITHUB_TOKEN }}
3030
version: 3.x
@@ -118,7 +118,7 @@ jobs:
118118
path: dist
119119

120120
- name: Install Taskfile
121-
uses: arduino/actions/setup-taskfile@master
121+
uses: arduino/setup-task@v1
122122
with:
123123
repo-token: ${{ secrets.GITHUB_TOKEN }}
124124
version: 3.x

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
go-version: "1.15"
2828

2929
- name: Install Taskfile
30-
uses: arduino/actions/setup-taskfile@master
30+
uses: arduino/setup-task@v1
3131
with:
3232
repo-token: ${{ secrets.GITHUB_TOKEN }}
3333
version: 3.x

.github/workflows/verify-formatting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v2
2626

2727
- name: Install Taskfile
28-
uses: arduino/actions/setup-taskfile@master
28+
uses: arduino/setup-task@v1
2929
with:
3030
repo-token: ${{ secrets.GITHUB_TOKEN }}
3131
version: 3.x

0 commit comments

Comments
 (0)