From: Michał Gołębiowski-Owczarek Date: Thu, 30 Mar 2023 08:17:02 +0000 (+0200) Subject: Build: Stop using ::set-output in GitHub Actions X-Git-Tag: 1.13.3~32 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=43ed5c94aa796767d635ede2f3e4750c8710f47e;p=jquery-ui.git 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/ --- 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