From de3a1f841c35640e231144ac064a877a19678062 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Tue, 6 Dec 2022 22:31:30 +0100 Subject: [PATCH] Fix GitHub Actions deprecation --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 445e16e..fff6890 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Get Composer's cache directory id: composer-cache-path - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies uses: actions/cache@v3