From 43ed5c94aa796767d635ede2f3e4750c8710f47e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Thu, 30 Mar 2023 10:17:02 +0200 Subject: [PATCH] Build: Stop using ::set-output in GitHub Actions The `set-output` workflow is deprecated in favor of using environment variables, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1708fb236..868352dd1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: - name: Get npm cache directory id: npm-cache-dir run: | - echo "::set-output name=dir::$(npm config get cache)" + echo "dir=\"$(npm config get cache)\"" >> $GITHUB_OUTPUT - name: Cache npm dependencies uses: actions/cache@v3 -- 2.39.5