diff --git a/.github/workflows/insider-linux.yml b/.github/workflows/insider-linux.yml index 1cad128..50cc5a8 100644 --- a/.github/workflows/insider-linux.yml +++ b/.github/workflows/insider-linux.yml @@ -33,8 +33,6 @@ env: jobs: check: runs-on: ubuntu-latest - container: - image: vscodium/vscodium-linux-build-agent:bionic-x64 outputs: MS_COMMIT: ${{ env.MS_COMMIT }} MS_TAG: ${{ env.MS_TAG }} @@ -43,7 +41,7 @@ jobs: SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.GITHUB_BRANCH }} @@ -70,7 +68,7 @@ jobs: if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.GITHUB_BRANCH }} @@ -109,6 +107,7 @@ jobs: build: needs: + - check - compile runs-on: ubuntu-latest strategy: @@ -195,6 +194,7 @@ jobs: reh: needs: + - check - compile runs-on: ubuntu-20.04 strategy: diff --git a/package_linux_bin.sh b/package_linux_bin.sh index 41857a8..beb286e 100755 --- a/package_linux_bin.sh +++ b/package_linux_bin.sh @@ -7,6 +7,8 @@ if [[ "${CI_BUILD}" == "no" ]]; then exit 1 fi +export VSCODE_SKIP_NODE_VERSION_CHECK=1 + tar -xzf ./vscode.tar.gz cd vscode || { echo "'vscode' dir not found"; exit 1; }