Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ide/gha-update-image/index-jb.ts
2498 views
1
// Copyright (c) 2024 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
import { $ } from "bun";
6
import { upgradeStableVersionsInWorkspaceaAndGradle } from "./lib/jb-stable-version";
7
import { appendPinVersionsIntoIDEConfigMap } from "./lib/jb-pin-version";
8
9
$.nothrow(); // git likes to respond with non-zero codes, but it is alright for us
10
11
const updatedIDEs = await upgradeStableVersionsInWorkspaceaAndGradle();
12
await appendPinVersionsIntoIDEConfigMap(updatedIDEs);
13
14