Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Commit

Permalink
Adding deprecation warning (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Sep 29, 2020
1 parent 460e673 commit 22b63fb
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 19 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 3.3.1 (2020/09/29)

* Action moved to Docker organization (#234)
* Update deps

## 3.3.0 (2020/08/17)

* Use crazy-max/ghaction-docker-login action
Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -5,6 +5,10 @@
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)

## Moved to Docker organization

**This action is ARCHIVED and will not receive any updates, update your workflows to use the official Docker action [docker/setup-buildx-action@v1](https://github.com/docker/setup-buildx-action)**

## About

GitHub Action to set up Docker [Buildx](https://github.com/docker/buildx).
Expand Down
2 changes: 2 additions & 0 deletions action.yml
Expand Up @@ -8,10 +8,12 @@ branding:

inputs:
buildx-version:
deprecationMessage: 'This action is ARCHIVED and will not receive any updates, update your workflows to use the official Docker action docker/setup-buildx-action@v1'
description: 'Buildx version. Example: v0.3.0'
default: 'latest'
required: false
qemu-version:
deprecationMessage: 'This action is ARCHIVED and will not receive any updates, update your workflows to use the official Docker action docker/setup-buildx-action@v1'
description: 'QEMU static binaries Docker image version. Example: 4.2.0-7'
default: 'latest'
required: false
Expand Down
104 changes: 85 additions & 19 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/main.ts
Expand Up @@ -13,6 +13,10 @@ async function run(): Promise<void> {
return;
}

core.warning(
'This action is ARCHIVED and will not receive any updates, update your workflows to use the official Docker action docker/setup-buildx-action@v1'
);

const buildxVer: string = core.getInput('buildx-version') || 'latest';
const qemuVer: string = core.getInput('qemu-version') || 'latest';
const dockerConfigHome: string = process.env.DOCKER_CONFIG || path.join(os.homedir(), '.docker');
Expand Down

0 comments on commit 22b63fb

Please sign in to comment.