Skip to content

Commit

Permalink
Use new arduino/setup-task action name in CI/CD workflows
Browse files Browse the repository at this point in the history
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`).
  • Loading branch information
per1234 authored and umbynos committed Jul 15, 2021
1 parent e9328e2 commit ae4d4b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
go get -u github.com/sanbornm/go-selfupdate/...
- name: Install Taskfile
uses: arduino/actions/setup-taskfile@master
uses: arduino/setup-task@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
go get golang.org/x/lint/golint
- name: Install Taskfile
uses: arduino/actions/setup-taskfile@master
uses: arduino/setup-task@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit ae4d4b4

Please sign in to comment.