Skip to content

Commit 30ce7df

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 f622eb1 commit 30ce7df

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/check-go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v2
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
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/checkout@v2
4444

4545
- name: Install Taskfile
46-
uses: arduino/actions/setup-taskfile@master
46+
uses: arduino/setup-task@v1
4747
with:
4848
repo-token: ${{ secrets.GITHUB_TOKEN }}
4949
version: 3.x
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v2
6060

6161
- name: Install Taskfile
62-
uses: arduino/actions/setup-taskfile@master
62+
uses: arduino/setup-task@v1
6363
with:
6464
repo-token: ${{ secrets.GITHUB_TOKEN }}
6565
version: 3.x

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
uses: actions/checkout@v2
216216

217217
- name: Install Taskfile
218-
uses: arduino/actions/setup-taskfile@master
218+
uses: arduino/setup-task@v1
219219
with:
220220
repo-token: ${{ secrets.GITHUB_TOKEN }}
221221
version: 3.x

.github/workflows/check-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: pip install poetry
4141

4242
- name: Install Taskfile
43-
uses: arduino/actions/setup-taskfile@master
43+
uses: arduino/setup-task@v1
4444
with:
4545
repo-token: ${{ secrets.GITHUB_TOKEN }}
4646
version: 3.x
@@ -64,7 +64,7 @@ jobs:
6464
run: pip install poetry
6565

6666
- name: Install Taskfile
67-
uses: arduino/actions/setup-taskfile@master
67+
uses: arduino/setup-task@v1
6868
with:
6969
repo-token: ${{ secrets.GITHUB_TOKEN }}
7070
version: 3.x

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v2
1515

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

.github/workflows/spell-check.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 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/test-go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
go-version: "1.14"
3434

3535
- name: Install Taskfile
36-
uses: arduino/actions/setup-taskfile@master
36+
uses: arduino/setup-task@v1
3737
with:
3838
repo-token: ${{ secrets.GITHUB_TOKEN }}
3939
version: 3.x

.github/workflows/test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: pip install poetry
4848

4949
- name: Install Taskfile
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

0 commit comments

Comments
 (0)