Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/build-push-docker-cache-map-docs.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/docker-cache-map-input.md

This file was deleted.

12 changes: 12 additions & 0 deletions actions/build-push-docker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# build-push-docker

## 1.7.2

### Patch Changes

- [#1653](https://github.com/smartcontractkit/.github/pull/1653)
[`f6a20ba`](https://github.com/smartcontractkit/.github/commit/f6a20bad9635eb555ba0608040f46e86990ce4ef)
Thanks [@kalverra](https://github.com/kalverra)! - Fix cache-map input
description: recommend the object form with an explicit id matching the
Dockerfile cache mount id. The simple string form omits id, so BuildKit keys
the cache on the target path and never matches mounts that define an explicit
id.

## 1.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion actions/build-push-docker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "build-push-docker",
"version": "1.7.1",
"version": "1.7.2",
"description": "",
"private": true,
"scripts": {},
Expand Down
13 changes: 13 additions & 0 deletions workflows/reusable-docker-build-publish/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# reusable-docker-build-publish

## 1.8.0

### Minor Changes

- [#1653](https://github.com/smartcontractkit/.github/pull/1653)
[`f6a20ba`](https://github.com/smartcontractkit/.github/commit/f6a20bad9635eb555ba0608040f46e86990ce4ef)
Thanks [@kalverra](https://github.com/kalverra)! - Add `docker-cache-map`
input, passed through to build-push-docker's `cache-map`. Set it to restrict
buildkit-cache-dance to specific cache mounts (e.g.
`'{"cache-mount/go-build-cache": {"id": "go-build-cache", "target": "/var/cache-target"}}'`)
instead of auto-discovering all cache mounts in the Dockerfile. Omit to keep
auto-discovery.

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workflows/reusable-docker-build-publish/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reusable-docker-build-publish",
"version": "1.7.0",
"version": "1.8.0",
"description": "",
"private": true,
"scripts": {},
Expand Down
Loading