Skip to content

Commit 460a795

Browse files
committed
Use standardized Task install step name in workflows
This is the naming convention established in the standardized template workflow. The tool name is "Task", with "taskfile" being its configuration file, so the previous step name was inaccurate.
1 parent 8cd36e1 commit 460a795

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 0
2929

30-
- name: Install Taskfile
30+
- name: Install Task
3131
uses: arduino/setup-task@v1
3232
with:
3333
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-go-integration-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install Poetry
6363
run: pip install poetry
6464

65-
- name: Install Taskfile
65+
- name: Install Task
6666
uses: arduino/setup-task@v1
6767
with:
6868
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
go-version: ${{ env.GO_VERSION }}
4040

41-
- name: Install Taskfile
41+
- name: Install Task
4242
uses: arduino/setup-task@v1
4343
with:
4444
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -80,7 +80,7 @@ jobs:
8080
# Add installation folder to path to path
8181
echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
8282
83-
- name: Install Taskfile
83+
- name: Install Task
8484
uses: arduino/setup-task@v1
8585
with:
8686
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)