Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme: remove v1 section #500

Merged
merged 1 commit into from Nov 16, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 0 additions & 9 deletions README.md
Expand Up @@ -4,15 +4,6 @@
[![Test workflow](https://img.shields.io/github/workflow/status/docker/build-push-action/test?label=test&logo=github&style=flat-square)](https://github.com/docker/build-push-action/actions?workflow=test)
[![Codecov](https://img.shields.io/codecov/c/github/docker/build-push-action?logo=codecov&style=flat-square)](https://codecov.io/gh/docker/build-push-action)

## Upgrade from v1

`v2` of this action includes significant updates and now uses Docker [Buildx](https://github.com/docker/buildx). It's
also rewritten as a [typescript-action](https://github.com/actions/typescript-action/) to be as close as possible
of the [GitHub Runner](https://github.com/actions/virtual-environments) during its execution.

[Upgrade notes](UPGRADE.md) with many [usage examples](#advanced-usage) have been added to handle most use cases but
`v1` is still available through [`releases/v1` branch](https://github.com/docker/build-push-action/tree/releases/v1).

## About

GitHub Action to build and push Docker images with [Buildx](https://github.com/docker/buildx) with full support of the
Expand Down
6 changes: 3 additions & 3 deletions UPGRADE.md
Expand Up @@ -28,7 +28,7 @@
# v1
steps:
-
name: Checkout code
name: Checkout
uses: actions/checkout@v2
-
name: Build and push Docker images
Expand All @@ -47,7 +47,7 @@ steps:
# v2
steps:
-
name: Checkout code
name: Checkout
uses: actions/checkout@v2
-
name: Set up Docker Buildx
Expand Down Expand Up @@ -79,7 +79,7 @@ steps:
# v1
steps:
-
name: Checkout code
name: Checkout
uses: actions/checkout@v2
-
name: Build and push Docker images
Expand Down