From 0e024acda672e20c3db7669a79dd7d2fe37dd31c Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Mon, 2 Dec 2019 08:55:09 -0800 Subject: [PATCH] Remove helpers for packages in master --- externals/install-dotnet.sh | 0 lib/setup-dotnet.js | 1 - package.json | 3 +-- src/setup-dotnet.ts | 3 --- 4 files changed, 1 insertion(+), 6 deletions(-) mode change 100644 => 100755 externals/install-dotnet.sh diff --git a/externals/install-dotnet.sh b/externals/install-dotnet.sh old mode 100644 new mode 100755 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/package.json b/package.json index 88d8832..1d4f791 100644 --- a/package.json +++ b/package.json @@ -46,8 +46,7 @@ "husky": { "skipCI": true, "hooks": { - "pre-commit": "npm run build && npm run format", - "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"Husky commit correct node modules\"" + "pre-commit": "npm run build && npm run format" } } } 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) {