diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 705a7733..b4d6650e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,11 +52,11 @@ jobs: - 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: Get date part for cache key id: key-date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - name: Cache composer dependencies uses: actions/cache@v3