From cc34acfbcfc409bb5b6077cc74d3eb1d4aaeee2c Mon Sep 17 00:00:00 2001 From: Hana Date: Thu, 4 Nov 2021 14:30:25 -0400 Subject: [PATCH] github/workflows: update lannonbr/vsce-action This fixes the broken nightly release. Breakage was caused by the new vsce release, and the fixed version requires a newer node version. The new lannonbr/vsce-action 3.0.0 includes the fix. https://github.com/lannonbr/vsce-action/commit/0f3391ee0477b08fae949eb0a875e91e6d20b075 See github.com/lannonbr/vsce-action/issues/7 Change-Id: If8d1325bc17a5e89d02fe261b409b1dadde93a48 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/361415 Trust: Hyang-Ah Hana Kim Run-TryBot: Hyang-Ah Hana Kim Reviewed-by: Suzy Mueller TryBot-Result: kokoro --- .github/workflows/release-nightly.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 1148a2c35d..811b08768c 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -62,7 +62,7 @@ jobs: - name: Publish if: github.ref == 'refs/heads/master' && github.repository == 'golang/vscode-go' - uses: lannonbr/vsce-action@704da577da0f27de5cdb4ae018374c2f08b5f523 + uses: lannonbr/vsce-action@0f3391ee0477b08fae949eb0a875e91e6d20b075 with: args: "publish -p $VSCE_TOKEN" env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 420153e774..f2156ad505 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,7 +75,7 @@ jobs: npm run vscode:prepublish - name: package - uses: lannonbr/vsce-action@704da577da0f27de5cdb4ae018374c2f08b5f523 + uses: lannonbr/vsce-action@0f3391ee0477b08fae949eb0a875e91e6d20b075 with: args: "package" @@ -102,10 +102,10 @@ jobs: - name: publish if: env.EXT_ISPREVIEW != 1 && github.repository == 'golang/vscode-go' - uses: lannonbr/vsce-action@704da577da0f27de5cdb4ae018374c2f08b5f523 + uses: lannonbr/vsce-action@0f3391ee0477b08fae949eb0a875e91e6d20b075 with: args: "publish -p $VSCE_TOKEN" env: VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }} -# TODO: check if the commit is in green state. (test-long.yml results) \ No newline at end of file +# TODO: check if the commit is in green state. (test-long.yml results)