Skip to content

Commit

Permalink
fix: switch the default heroku builder to heroku-20 (#3611)
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-fully-ported authored Sep 20, 2023
1 parent 40daca3 commit 67c6965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/main/home/app-dashboard/types/buildpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 67c6965

Please sign in to comment.