From 73dee6e668a4ca0344ecbe70d6fdaa8b00cc19f6 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 20 May 2021 02:02:33 -0700 Subject: [PATCH] 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`). --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 662eaf992..7107094f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 708f82254..3c29107fb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }}