mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* Align experience of latest pinned and unpinned version * Improve GHA * Remove latest stable version in versions * 💄 * debug commit * fix option not update * Add unit test case for versions * test cover more * Add allow pin field * 😅 * Add debug log
13 lines
586 B
TypeScript
13 lines
586 B
TypeScript
// Copyright (c) 2024 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
import { $ } from "bun";
|
|
import { upgradeStableVersionsInWorkspaceaAndGradle } from "./lib/jb-stable-version";
|
|
import { appendPinVersionsIntoIDEConfigMap } from "./lib/jb-pin-version";
|
|
|
|
$.nothrow(); // git likes to respond with non-zero codes, but it is alright for us
|
|
|
|
const updatedIDEs = await upgradeStableVersionsInWorkspaceaAndGradle();
|
|
await appendPinVersionsIntoIDEConfigMap(updatedIDEs);
|