Revert "Remove dashes from step ids"

This reverts commit b9ef39c812.
This commit is contained in:
Shivam Mathur
2020-11-16 01:55:15 +05:30
parent bea4065e11
commit 5070ebd871
22 changed files with 57 additions and 57 deletions
+3 -3
View File
@@ -264,14 +264,14 @@ You can persist composer's internal cache directory using the [`action/cache`](h
**Note:** Please do not cache `vendor` directory using `action/cache` as that will have side-effects.
```yaml
- name: Get composer cache directory
id: composercache
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-