Skip to content

Commit

Permalink
swap heroku-18 for heroku-24
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-salesforce committed May 21, 2024
1 parent 1caf8cd commit 31bb945
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
stack: [heroku-20, heroku-22]
stack: [heroku-20, heroku-22, heroku-24]
pg_version: ["", "12", "13", "14", "15", "16"]
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ function package_download() {
echo "Using postgresql version: ${POSTGRESQL_VERSION}" | indent

case $STACK in
heroku-18) ;;
heroku-20) ;;
heroku-22) ;;
heroku-24) ;;
*) error "Unrecognized stack version: ${STACK}";;
esac

Expand Down
2 changes: 1 addition & 1 deletion support/build-postgresql
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

for PGSQL_VERSION in "${PGSQL_VERSIONS[@]}"; do
PGSQL_VERSION=$(echo "$PGSQL_VERSION" | tr -d '[:space:]') # '12.2 ' -> '12.2'
for stack in heroku-{20,22}; do
for stack in heroku-{20,22,24}; do
echo "Building PG $PGSQL_VERSION for $stack..."
BASE_IMAGE="heroku/${stack/-/:}" # heroku-22 -> heroku/heroku:22
docker build \
Expand Down

0 comments on commit 31bb945

Please sign in to comment.