Skip to content

Commit 2666b6e

Browse files
authored
[skip changelog] Use new arduino/setup-task action name in CI/CD workflows (#1294)
The GitHub Actions action for installing Task action has graduated from its original home in the experimental `arduino/action` repository with the 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 (e.g., `uses: arduino/setup-task@v2`).
1 parent 707988e commit 2666b6e

10 files changed

+11
-11
lines changed

Diff for: .github/workflows/i18n-nightly-push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
go-version: "1.14"
2222

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

Diff for: .github/workflows/i18n-weekly-pull.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
go get github.com/cmaglie/go.rice/rice
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

Diff for: .github/workflows/link-validation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 1
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

Diff for: .github/workflows/nightly.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
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

Diff for: .github/workflows/publish-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/checkout@v2
4545

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

Diff for: .github/workflows/python-lint.yaml

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

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

Diff for: .github/workflows/release.yaml

+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

Diff for: .github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
shell: bash
3737

3838
- name: Install Taskfile
39-
uses: Arduino/actions/setup-taskfile@master
39+
uses: arduino/setup-task@v1
4040
with:
4141
repo-token: ${{ secrets.GITHUB_TOKEN }}
4242
version: 3.x
@@ -124,7 +124,7 @@ jobs:
124124
fetch-depth: 0
125125

126126
- name: Install Taskfile
127-
uses: arduino/actions/setup-taskfile@master
127+
uses: arduino/setup-task@v1
128128
with:
129129
repo-token: ${{ secrets.GITHUB_TOKEN }}
130130
version: 3.x

Diff for: .github/workflows/validate-docs.yaml

+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

Diff for: .github/workflows/verify-formatting.yaml

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