Skip to content

Commit 256c4c7

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 ab97a14 commit 256c4c7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/check-go.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v2
3232

3333
- name: Install Task
34-
uses: arduino/actions/setup-taskfile@master
34+
uses: arduino/setup-task@v1
3535
with:
3636
repo-token: ${{ secrets.GITHUB_TOKEN }}
3737
version: 3.x
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@v2
4848

4949
- name: Install Task
50-
uses: arduino/actions/setup-taskfile@master
50+
uses: arduino/setup-task@v1
5151
with:
5252
repo-token: ${{ secrets.GITHUB_TOKEN }}
5353
version: 3.x
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/checkout@v2
6767

6868
- name: Install Task
69-
uses: arduino/actions/setup-taskfile@master
69+
uses: arduino/setup-task@v1
7070
with:
7171
repo-token: ${{ secrets.GITHUB_TOKEN }}
7272
version: 3.x
@@ -82,7 +82,7 @@ jobs:
8282
uses: actions/checkout@v2
8383

8484
- name: Install Task
85-
uses: arduino/actions/setup-taskfile@master
85+
uses: arduino/setup-task@v1
8686
with:
8787
repo-token: ${{ secrets.GITHUB_TOKEN }}
8888
version: 3.x

.github/workflows/check-prettier-formatting-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
uses: actions/checkout@v2
207207

208208
- name: Install Task
209-
uses: arduino/actions/setup-taskfile@master
209+
uses: arduino/setup-task@v1
210210
with:
211211
repo-token: ${{ secrets.GITHUB_TOKEN }}
212212
version: 3.x

.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: pip install poetry
2828

2929
- name: Install Task
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/test-go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
go-version: "1.14"
3636

3737
- name: Install Taskfile
38-
uses: arduino/actions/setup-taskfile@master
38+
uses: arduino/setup-task@v1
3939
with:
4040
repo-token: ${{ secrets.GITHUB_TOKEN }}
4141
version: 3.x
@@ -77,7 +77,7 @@ jobs:
7777
echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
7878
7979
- name: Install Taskfile
80-
uses: arduino/actions/setup-taskfile@master
80+
uses: arduino/setup-task@v1
8181
with:
8282
repo-token: ${{ secrets.GITHUB_TOKEN }}
8383
version: 3.x

0 commit comments

Comments
 (0)