diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-30 10:17:02 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | 43ed5c94aa796767d635ede2f3e4750c8710f47e (patch) | |
tree | 427eb56644b8241af75b2774cc956b1982598f6f | |
parent | 360259e2b21feb817d8a3e0795886649011ccad6 (diff) | |
download | jquery-ui-43ed5c94aa796767d635ede2f3e4750c8710f47e.tar.gz jquery-ui-43ed5c94aa796767d635ede2f3e4750c8710f47e.zip |
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/
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |