From e2fe68ae91962d5533e758bef30ccbfc406b5ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Robles?= Date: Wed, 26 Oct 2022 14:24:00 +0200 Subject: [PATCH] fix deprecation warning from Github using new envvar for output --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67905642..739a36bf 100644 --- a/README.md +++ b/README.md @@ -713,7 +713,7 @@ If your project uses composer, you can persist the composer's internal cache dir ```yaml - name: Get composer cache directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies uses: actions/cache@v2