From 4d955dc997bf4062071220322058ad954f3e95c5 Mon Sep 17 00:00:00 2001 From: Abdud Dayan Adeeb Date: Mon, 15 Feb 2021 17:26:10 -0500 Subject: [PATCH] feat: upgrade to v2 --- README.md | 8 ++++---- RELEASES.md | 10 ++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 RELEASES.md diff --git a/README.md b/README.md index dc5792d..aec420b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ #### Typical Use Case ```yaml -- uses: addnab/docker-run-action@v1 +- uses: addnab/docker-run-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -21,7 +21,7 @@ #### run a privately-owned image ```yaml -- uses: addnab/docker-run-action@v1 +- uses: addnab/docker-run-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -36,7 +36,7 @@ with: repository: test-image push: false -- uses: addnab/docker-run-action@v1 +- uses: addnab/docker-run-action@v2 with: image: test-image:latest run: echo "hello world" @@ -46,7 +46,7 @@ #### use a specific shell (default: sh). *Note: The shell must be installed in the container* ```yaml -- uses: addnab/docker-run-action@v1 +- uses: addnab/docker-run-action@v2 with: image: docker:latest shell: bash diff --git a/RELEASES.md b/RELEASES.md new file mode 100644 index 0000000..37845f6 --- /dev/null +++ b/RELEASES.md @@ -0,0 +1,10 @@ +# addnab/docker-run-action Releases + +### 2.0.0 + +- Added support for networking with other containers [#3](https://github.com/addnab/docker-run-action/pull/3) [#7](https://github.com/addnab/docker-run-action/pull/7) +- Added tests [#7](https://github.com/addnab/docker-run-action/pull/7) + +### 1.0.0 + +- Initial release