Compare commits

..

3 Commits

Author SHA1 Message Date
Alexei Lozovsky 7315a94840 msvc-dev-cmd v1.12.0 2022-10-15 09:48:42 +09:00
Mathias LANG 4734b1a57b Update the action to node 16 (#60)
Node 12 is deprecated and gives off a warning:
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
2022-10-15 03:42:27 +03:00
Oleksii Lozovskyi f6f64f2dd6 Remove "node_modules" (#57)
It's needed only on the release branch. No need to pollute development
branches with that. CI is able to "npm install" it back.
2022-08-29 13:50:25 +03:00
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ inputs:
vsversion: vsversion:
description: The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019"). description: The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019").
runs: runs:
using: node12 using: node16
main: index.js main: index.js
branding: branding:
icon: terminal icon: terminal
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.11.0", "version": "1.12.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.11.0", "version": "1.12.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.11.0", "version": "1.12.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.9.1" "@actions/core": "^1.9.1"
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.11.0", "version": "1.12.0",
"description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++", "description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {