Skip to content

Commit f8f3d61

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 57756ad commit f8f3d61

13 files changed

+13
-13
lines changed

.github/workflows/check-formatting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v2
3232

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

.github/workflows/check-links.yml

+1-1
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

.github/workflows/lint-code.yml

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

.github/workflows/lint-config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v2
2424

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

.github/workflows/lint-documentation.yml

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

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

.github/workflows/lint-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v2
2424

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

.github/workflows/lint-shell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v2
2020

2121
- name: Install Taskfile
22-
uses: arduino/actions/setup-taskfile@master
22+
uses: arduino/setup-task@v1
2323
with:
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
version: 3.x

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818

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

.github/workflows/publish-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/checkout@v2
4343

4444
- name: Install Taskfile
45-
uses: arduino/actions/setup-taskfile@master
45+
uses: arduino/setup-task@v1
4646
with:
4747
repo-token: ${{ secrets.GITHUB_TOKEN }}
4848
version: 3.x

.github/workflows/release.yml

+1-1
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

.github/workflows/spell-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: pip install poetry
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

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
go-version: "1.14"
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

.github/workflows/validate-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v2
2929

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

0 commit comments

Comments
 (0)