From 2e2f4508ba2a69ef107fdf01f6f5ab007ef22101 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 8 Nov 2019 17:00:09 +0000 Subject: [PATCH 1/2] Update README for semantic versioning --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7cd7f10..d59b5da 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ See [action.yml](action.yml) Basic (download to current working directory): ```yaml steps: -- uses: actions/checkout@master +- uses: actions/checkout@v1 -- uses: actions/download-artifact@master +- uses: actions/download-artifact@v1 with: name: my-artifact @@ -24,9 +24,9 @@ Download to specific directory: ```yaml steps: -- uses: actions/checkout@master +- uses: actions/checkout@v1 -- uses: actions/download-artifact@master +- uses: actions/download-artifact@v1 with: name: my-artifact path: path/to/artifact From b834b5037888d749637ad72574aeaea195fed3c1 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 8 Nov 2019 17:00:32 +0000 Subject: [PATCH 2/2] Update description --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 15c99c5..ca54423 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ -name: 'Download artifact' -description: 'Download workflow artifacts' +name: 'Download a Build Artifact' +description: 'Download a build artifact that was previously uploaded in the workflow by the upload-artifact action' author: 'GitHub' inputs: name: