From 530a355df6b2a7f771c5c754fabab00292a264f3 Mon Sep 17 00:00:00 2001 From: Piotr Delawski Date: Wed, 17 Jul 2024 15:27:42 +0200 Subject: [PATCH] Replace deprecated `::set-output` with `$GITHUB_OUTPUT` --- .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 d98c99c7f..6aa0ce8e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ 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: Cache Composer packages uses: actions/cache@v3