Skip to content

Commit

Permalink
Update examples to use a supported builder image
Browse files Browse the repository at this point in the history
The `heroku/buildpacks:18` builder image has been EOLed and aborts
with an error message.

The examples have been updated to use the newer `heroku/builder:22`.

For all available builder image variants, see:
https://github.com/heroku/cnb-builder-images/blob/main/README.md

Signed-off-by: Ed Morley <[email protected]>
  • Loading branch information
edmorley committed Oct 3, 2023
1 parent 913be19 commit 619e3e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/examples/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ usage:
jobs:
- buildpacks/build:
image-name: myimage
builder: heroku/buildpacks:18
builder: heroku/builder:22
2 changes: 1 addition & 1 deletion src/examples/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ usage:
- buildpacks/build:
image-name: myimage
image-file: myimage.tgz
builder: heroku/buildpacks:18
builder: heroku/builder:22
- publish:
requires:
- buildpacks/build
Expand Down
2 changes: 1 addition & 1 deletion src/examples/explicit-buildpacks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ usage:
jobs:
- buildpacks/build:
image-name: myimage
builder: heroku/buildpacks:18
builder: heroku/builder:22
buildpack: heroku/ruby

0 comments on commit 619e3e2

Please sign in to comment.