Skip to content

Commit 321fab0

Browse files
committed
Revert "Pin Windows-compatible version of Task where necessary"
This reverts commit 8d6e59f. A new 3.9.2 release of Task is out with a fix for the the Windows PATH handling bug that affected 3.9.1. So it is no longer necessary to do a full pin of Task in the "Template" workflows. Pinning only the major version series allows the workflows to use the latest version of Task until such time as a breaking change necessitates a major version bump. This provides the right balance of access to beneficial developments, while requiring manual review in the event that development might break something.
1 parent f8b7164 commit 321fab0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/test-go-integration-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: arduino/setup-task@v1
9292
with:
9393
repo-token: ${{ secrets.GITHUB_TOKEN }}
94-
version: 3.9.0
94+
version: 3.x
9595

9696
- name: Run integration tests
9797
run: task go:test-integration

workflow-templates/dependabot/workflow-template-copies/.github/workflows/test-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
uses: arduino/setup-task@v1
8787
with:
8888
repo-token: ${{ secrets.GITHUB_TOKEN }}
89-
version: 3.9.0
89+
version: 3.x
9090

9191
- name: Run tests
9292
env:

workflow-templates/test-go-integration-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: arduino/setup-task@v1
9292
with:
9393
repo-token: ${{ secrets.GITHUB_TOKEN }}
94-
version: 3.9.0
94+
version: 3.x
9595

9696
- name: Run integration tests
9797
run: task go:test-integration

workflow-templates/test-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
uses: arduino/setup-task@v1
8787
with:
8888
repo-token: ${{ secrets.GITHUB_TOKEN }}
89-
version: 3.9.0
89+
version: 3.x
9090

9191
- name: Run tests
9292
env:

0 commit comments

Comments
 (0)