Skip to content

Commit 0f6f11a

Browse files
author
Zachary Eisinger
committed
Remove warning on master branch
1 parent 5454f3a commit 0f6f11a

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

lib/setup-dotnet.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function run() {
2626
// Version is optional. If supplied, install / use from the tool cache
2727
// If not supplied then task is still used to setup proxy, auth, etc...
2828
//
29-
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`);
3029
let version = core.getInput('version');
3130
if (!version) {
3231
version = core.getInput('dotnet-version');

src/setup-dotnet.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ async function run() {
99
// Version is optional. If supplied, install / use from the tool cache
1010
// If not supplied then task is still used to setup proxy, auth, etc...
1111
//
12-
console.log(
13-
`::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`
14-
);
1512

1613
let version = core.getInput('version');
1714
if (!version) {

0 commit comments

Comments
 (0)