From 60f12bc8688335cfb6e88054403c6b045f9cd8f8 Mon Sep 17 00:00:00 2001 From: indifferentketchup Date: Fri, 1 May 2026 05:35:57 +0000 Subject: [PATCH] Replace deprecated ::set-output with GITHUB_OUTPUT GitHub deprecated the ::set-output workflow command in 2022 and the runners now emit warnings on every CI run. Switch to writing the 'name=value' line into the file pointed to by \$GITHUB_OUTPUT, which is the documented modern equivalent. The downstream cache step already references steps.composer-cache.outputs.dir, no other change needed. --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0dde0a1..c25bf20 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -27,7 +27,7 @@ jobs: - name: Set 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: Restore composer from cache uses: actions/cache@v4