From c16522c3c74f8faa2e3e772d513efa61c12a64c5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 21 Nov 2022 10:30:11 +0100 Subject: [PATCH] Replace deprecated command with environment file in example documentation --- .github/workflows/workflow.yml | 4 ++-- README.md | 4 ++-- examples.md | 17 ++++++++--------- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 60410a6..c6febe5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -27,8 +27,8 @@ jobs: node-version: 16.x - name: Determine npm cache directory id: npm-cache - run: | - echo "::set-output name=dir::$(npm config get cache)" + run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT + - name: Restore npm cache uses: actions/cache@v3 with: diff --git a/README.md b/README.md index 8117b58..41e9c67 100644 --- a/README.md +++ b/README.md @@ -135,8 +135,8 @@ Additionally, you can use arbitrary command output in a cache key, such as a dat # http://man7.org/linux/man-pages/man1/date.1.html - name: Get Date id: get-date - run: | - echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" + run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT + shell: bash - uses: actions/cache@v3 diff --git a/examples.md b/examples.md index 5a38585..ad57c85 100644 --- a/examples.md +++ b/examples.md @@ -264,7 +264,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba with: path: | ~\AppData\Roaming\stack - ~\AppData\Local\Programs\stack + ~\AppData\Local\Programs\stack key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }} restore-keys: | ${{ runner.os }}-stack-global- @@ -315,8 +315,8 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s ```yaml - name: Get npm cache directory id: npm-cache-dir - run: | - echo "::set-output name=dir::$(npm config get cache)" + run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT + - uses: actions/cache@v3 id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true' with: @@ -342,7 +342,7 @@ The yarn cache directory will depend on your operating system and version of `ya ```yaml - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) @@ -360,7 +360,7 @@ The yarn 2 cache directory will depend on your config. See https://yarnpkg.com/c ```yaml - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) @@ -404,8 +404,8 @@ Esy allows you to export built dependencies and import pre-built dependencies. ```yaml - 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 + - uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} @@ -496,8 +496,7 @@ jobs: ```yaml - name: Get pip cache dir id: pip-cache - run: | - echo "::set-output name=dir::$(pip cache dir)" + run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: pip cache uses: actions/cache@v3