You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-9Lines changed: 0 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,12 +77,6 @@ toward higher levels of security and trust.
77
77
requiring emulation or [custom CI logic](https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners)
78
78
or self-managed runners.
79
79
80
-
* **Optimized cache warming & reuse.**
81
-
The builder can use the GitHub Actions cache backend to persist layers across
82
-
branches, PRs, and rebuilds. This significantly reduces cold-start times and
83
-
avoids repeating expensive dependency installations, even for external
84
-
contributors' pull requests.
85
-
86
80
* **Centralized build configuration.**
87
81
Repositories no longer need to configure buildx drivers, tune storage, or
88
82
adjust resource limits. The reusable workflows encapsulate the recommended
@@ -231,9 +225,6 @@ on:
231
225
| `envs` | List | | Environment variables to inject in the reusable workflow as list of key-value pair. This is similar to the [GitHub Actions `env` context](https://docs.github.com/en/actions/reference/workflows-and-actions/contexts#env-context) that is currently not available when calling a reusable workflow |
232
226
| `annotations` | List | | List of annotations to set to the image (for `image` output) |
233
227
| `build-args` | List | `auto` | List of [build-time variables](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-arg). If you want to set a build-arg through an environment variable, use the `envs` input |
| `cache-scope` | String | target name or `buildkit` | Which [scope cache object belongs to](https://docs.docker.com/build/cache/backends/gha/#scope) if `cache` is enabled. This is the cache blob prefix name used when pushing cache to GitHub Actions cache backend |
236
-
| `cache-mode` | String | `min` | [Cache layers to export](https://docs.docker.com/build/cache/backends/#cache-mode) if cache enabled (`min` or `max`). In `min` cache mode, only layers that are exported into the resulting image are cached, while in `max` cache mode, all layers are cached, even those of intermediate steps |
237
228
| `context` | String | `.` | Context to build from in the Git working tree |
238
229
| `file` | String | `{context}/Dockerfile` | Path to the Dockerfile |
239
230
| `labels` | List | | List of labels for an image (for `image` output) |
0 commit comments