Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several new GitHub Actions and workflows for building Docker images and manifests. The changes include adding new composite actions for different build tasks and creating corresponding workflows to utilize these actions.
New GitHub Actions:
.github/actions/build-deps-manifest/action.yml
: Added a new composite action for building Docker dependencies manifests..github/actions/build-deps/action.yml
: Added a new composite action for building Docker dependencies images..github/actions/build-images-manifest/action.yml
: Added a new composite action for building Docker images manifests..github/actions/build-images/action.yml
: Added a new composite action for building Docker images..github/actions/docker-setup/action.yml
: Added a new composite action for setting up Docker.New Workflows:
.github/workflows/_build-deps-manifest.yml
: Added a new workflow to build Docker dependencies manifests using thebuild-deps-manifest
action..github/workflows/_build-deps.yml
: Added a new workflow to build Docker dependencies images using thebuild-deps
action..github/workflows/_build-images-manifest.yml
: Added a new workflow to build Docker images manifests using thebuild-images-manifest
action..github/workflows/_build-images.yml
: Added a new workflow to build Docker images using thebuild-images
action.Other Changes:
.github/workflows/build-deps.yml
: Commented out the push, pull_request, and schedule triggers.