We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c17a172 commit 00cb4e3Copy full SHA for 00cb4e3
.github/workflows/ci.yml
@@ -129,11 +129,11 @@ jobs:
129
130
- name: Determine composer cache directory on Linux
131
if: matrix.os == 'ubuntu-latest'
132
- run: echo "::set-env name=COMPOSER_CACHE_DIR::$(./tools/composer config cache-dir)"
+ run: echo "COMPOSER_CACHE_DIR=$(tools/composer config cache-dir)" >> $GITHUB_ENV
133
134
- name: Determine composer cache directory on Windows
135
if: matrix.os == 'windows-latest'
136
- run: ECHO "::set-env name=COMPOSER_CACHE_DIR::~\AppData\Local\Composer"
+ run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Append
137
138
- name: Cache dependencies installed with composer
139
uses: actions/cache@v2
0 commit comments