Skip to content
This repository was archived by the owner on Apr 1, 2022. It is now read-only.

Commit 7976309

Browse files
committed
The setup-taskfile action has been moved to a dedicated repository, where it is actively maintained:
https://github.com/arduino/setup-task This fact is now communicated to visitors and users by: - Notes in top level readme - Notes in action level readmes - Warning printed in workflow run summary and logs
1 parent e4e0acb commit 7976309

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ action in a Google Sheets spreadsheet.
3232
* [libraries/spell-check](./libraries/spell-check) checks the files of your
3333
repository for commonly misspelled words.
3434

35-
* [setup-taskfile](./setup-taskfile) makes [Taskfile](https://taskfile.dev/#/)
36-
available to your Workflows.
35+
* [arduino/setup-task](https://github.com/arduino/setup-task) makes [Task](https://taskfile.dev/#/)
36+
available to your workflows.
37+
* **WARNING**: The `arduino/actions/setup-taskfile` action
38+
contained in this repository is deprecated. Please use the actively maintained
39+
`arduino/setup-task` action at the link above.
3740

3841
---
3942
**Note**: Several actions previously hosted in this experimental repository have

setup-taskfile/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
This action makes the `task` binary available to Workflows.
44

5+
## DEPRECATION NOTICE
6+
7+
**WARNING: the action has been moved to https://github.com/arduino/setup-task**
8+
9+
This unmaintained copy is kept only to provide provisional support for existing workflows, but will be removed soon.
10+
11+
See the migration guide:
12+
13+
https://github.com/arduino/setup-task/releases/tag/v1.0.0
14+
515
## Usage
616

717
To get the latest stable version of Task just add this step:

setup-taskfile/lib/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
1717
Object.defineProperty(exports, "__esModule", { value: true });
1818
const core = __importStar(require("@actions/core"));
1919
const installer = __importStar(require("./installer"));
20+
core.warning("This version of the action is deprecated. Use arduino/setup-task. See https://github.com/arduino/setup-task");
2021
function run() {
2122
return __awaiter(this, void 0, void 0, function* () {
2223
try {

setup-taskfile/src/main.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import * as core from "@actions/core";
22
import * as installer from "./installer";
33

4+
core.warning(
5+
"This version of the action is deprecated. Use arduino/setup-task. See https://github.com/arduino/setup-task"
6+
);
7+
48
async function run() {
59
try {
610
let version = core.getInput("version");

0 commit comments

Comments
 (0)