From f57be51deefa14a6df9e6b949b71bed9e5d9abff Mon Sep 17 00:00:00 2001 From: Alexei Lozovsky Date: Sat, 15 Oct 2022 10:03:44 +0900 Subject: [PATCH 1/3] Bump to 1.13.0-dev Syncing the version because it ticked me off. --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e7f7279..debaf1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "msvc-dev-cmd", - "version": "1.1.1", + "version": "1.13.0-dev", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "msvc-dev-cmd", - "version": "1.1.1", + "version": "1.13.0-dev", "license": "MIT", "dependencies": { "@actions/core": "^1.9.1" diff --git a/package.json b/package.json index 9189abf..2ca7fa7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "msvc-dev-cmd", - "version": "1.1.1", + "version": "1.13.0-dev", "description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++", "main": "index.js", "scripts": { From 674ff850cbd739c402260838fa45b7114f750570 Mon Sep 17 00:00:00 2001 From: Oleksii Lozovskyi Date: Sat, 15 Oct 2022 10:10:36 +0900 Subject: [PATCH 2/3] Have "Release" job test `release/v1` branch (#61) Instead of the v1 tag, that is. This makes it possible to push changes to release/v1 branch and get CI test them without actually moving the release tag which effectively publishes the updates to users. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 08b856b..cd8a649 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: runs-on: windows-latest steps: - name: Setup Developer Command Prompt - uses: ilammy/msvc-dev-cmd@v1 + uses: ilammy/msvc-dev-cmd@release/v1 - name: Check out source code uses: actions/checkout@v2 - name: Compile and run some C code From bba535b3febaff0dc5acaa23eca66da3024e6e24 Mon Sep 17 00:00:00 2001 From: Simran Date: Sat, 4 Feb 2023 23:54:41 +0000 Subject: [PATCH 3/3] Bump @actions/core to 1.10.0 (#62) --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index debaf1c..191d51b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,16 +9,16 @@ "version": "1.13.0-dev", "license": "MIT", "dependencies": { - "@actions/core": "^1.9.1" + "@actions/core": "^1.10.0" }, "devDependencies": { "eslint": "^7" } }, "node_modules/@actions/core": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.9.1.tgz", - "integrity": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "dependencies": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" @@ -1272,9 +1272,9 @@ }, "dependencies": { "@actions/core": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.9.1.tgz", - "integrity": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "requires": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" diff --git a/package.json b/package.json index 2ca7fa7..1b35f6e 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ }, "homepage": "https://github.com/ilammy/msvc-dev-cmd#readme", "dependencies": { - "@actions/core": "^1.9.1" + "@actions/core": "^1.10.0" }, "devDependencies": { "eslint": "^7"