Просмотр исходного кода

fix: switch the default heroku builder to heroku-20 (#3611)

jose-fully-ported 2 лет назад
Родитель
Сommit
67c6965e8f

+ 1 - 1
dashboard/src/components/repo-selector/BuildpackSelection.tsx

@@ -11,7 +11,7 @@ import styled, { keyframes } from "styled-components";
 
 const DEFAULT_BUILDER_NAME = "heroku";
 const DEFAULT_PAKETO_STACK = "paketobuildpacks/builder-jammy-full:latest";
-const DEFAULT_HEROKU_STACK = "heroku/builder:22";
+const DEFAULT_HEROKU_STACK = "heroku/buildpacks:20";
 
 type BuildConfig = {
   builder: string;

+ 1 - 1
dashboard/src/main/home/app-dashboard/types/buildpack.ts

@@ -25,7 +25,7 @@ export type DetectedBuildpack = z.infer<typeof detectedBuildpackSchema>;
 
 export const DEFAULT_BUILDER_NAME = "heroku";
 export const DEFAULT_PAKETO_STACK = "paketobuildpacks/builder-jammy-full:latest";
-export const DEFAULT_HEROKU_STACK = "heroku/builder:22";
+export const DEFAULT_HEROKU_STACK = "heroku/buildpacks:20";
 
 export const BUILDPACK_TO_NAME: { [key: string]: string } = {
   "heroku/nodejs": "NodeJS",