Skip to content

Commit efad1bf

Browse files
authored
Merge pull request #1718 from gliderlabs/master
Release 0.11.8
2 parents 05ca294 + 6424bb4 commit efad1bf

File tree

10 files changed

+33
-24
lines changed

10 files changed

+33
-24
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
fi
8484
8585
- name: upload packages
86-
uses: actions/upload-artifact@v5
86+
uses: actions/upload-artifact@v6
8787
with:
8888
name: build-${{ matrix.heroku }}-${{ matrix.buildx }}
8989
path: build
@@ -120,7 +120,7 @@ jobs:
120120
go-version: 1.17.8
121121

122122
- name: download packages
123-
uses: actions/download-artifact@v6
123+
uses: actions/download-artifact@v7
124124
with:
125125
name: build-${{ matrix.heroku }}-false
126126
path: build

.github/workflows/tag-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
make build build/docker/${{ matrix.heroku }} BUILDX=false STACK_VERSION=${{ matrix.heroku }}
5151
5252
- name: upload packages
53-
uses: actions/upload-artifact@v5
53+
uses: actions/upload-artifact@v6
5454
with:
5555
name: build-${{ matrix.heroku }}-${{ matrix.buildx }}
5656
path: build
@@ -68,7 +68,7 @@ jobs:
6868
ruby-version: 3.3
6969

7070
- name: download packages
71-
uses: actions/download-artifact@v6
71+
uses: actions/download-artifact@v7
7272
with:
7373
name: build-24-false
7474
path: build

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.11.8](https://github.com/gliderlabs/herokuish/compare/v0.11.7...v0.11.8) - 2025-12-16
6+
7+
- #1711 @dependabot: chore(deps): bump twig/twig from 3.22.1 to 3.22.2 in /buildpacks/buildpack-php/tests/php
8+
- #1712 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 278 to 279 in /buildpacks/buildpack-php/tests/php
9+
- #1713 @dependabot: chore(deps): bump actions/download-artifact from 6 to 7
10+
- #1714 @dependabot: chore(deps): bump actions/upload-artifact from 5 to 6
11+
- #1716 @josegonzalez: Update ruby version used in test sinatra app
12+
- #1717 @dokku-bot: Update ruby to version v335
13+
514
## [0.11.7](https://github.com/gliderlabs/herokuish/compare/v0.11.6...v0.11.7) - 2025-12-13
615

716
- #1695 @dokku-bot: Update ruby to version v333

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ REPOSITORY = herokuish
44
DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
55
HARDWARE = $(shell uname -m)
66
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
7-
VERSION ?= 0.11.7
7+
VERSION ?= 0.11.8
88
IMAGE_NAME ?= $(NAME)
99
BUILD_TAG ?= dev
1010
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg)](https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI)
44
[![IRC Channel](https://img.shields.io/badge/irc-%23gliderlabs-blue.svg)](https://kiwiirc.com/client/irc.freenode.net/#gliderlabs)
5-
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.11.7-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
5+
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.11.8-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
66

77
A command line tool for emulating Heroku build and runtime tasks in containers.
88

@@ -19,7 +19,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1919
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:
2020

2121
```shell
22-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.11.7/herokuish_0.11.7_linux_x86_64.tgz \
22+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.11.8/herokuish_0.11.8_linux_x86_64.tgz \
2323
| tar -xzC /bin
2424
```
2525

buildpacks/buildpack-php/tests/php/composer.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v333
1+
v335
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.4.7

buildpacks/buildpack-ruby/tests/ruby-sinatra/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'http://rubygems.org'
2-
ruby '3.1.3'
2+
ruby '3.4.7'
33
gem 'sinatra'
44
gem 'puma'
55
gem 'rack'

buildpacks/buildpack-ruby/tests/ruby-sinatra/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ DEPENDENCIES
4747
test-unit
4848

4949
RUBY VERSION
50-
ruby 3.1.3p185
50+
ruby 3.4.7p58
5151

5252
BUNDLED WITH
53-
2.3.26
53+
2.6.9

0 commit comments

Comments
 (0)