From 0f6f11a75160df3ab10e5c146cdbec37f168809c Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Fri, 20 Dec 2019 07:45:37 -0800 Subject: [PATCH] Remove warning on master branch --- lib/setup-dotnet.js | 1 - src/setup-dotnet.ts | 3 --- 2 files changed, 4 deletions(-) diff --git a/lib/setup-dotnet.js b/lib/setup-dotnet.js index 258a188..7c42583 100644 --- a/lib/setup-dotnet.js +++ b/lib/setup-dotnet.js @@ -26,7 +26,6 @@ function run() { // Version is optional. If supplied, install / use from the tool cache // If not supplied then task is still used to setup proxy, auth, etc... // - console.log(`::warning::Use the v1 tag to get the last version, master may contain breaking changes and will not contain any required packages in the future. i.e. actions/setup-dotnet@v1`); let version = core.getInput('version'); if (!version) { version = core.getInput('dotnet-version'); diff --git a/src/setup-dotnet.ts b/src/setup-dotnet.ts index e6e9723..f355ba0 100644 --- a/src/setup-dotnet.ts +++ b/src/setup-dotnet.ts @@ -9,9 +9,6 @@ async function run() { // Version is optional. If supplied, install / use from the tool cache // If not supplied then task is still used to setup proxy, auth, etc... // - console.log( - `::warning::Use the v1 tag to get the last version, master may contain breaking changes and will not contain any required packages in the future. i.e. actions/setup-dotnet@v1` - ); let version = core.getInput('version'); if (!version) {