Skip to content

Commit

Permalink
Update docs to deprecate set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanis authored Mar 13, 2023
1 parent de32f14 commit cc3983b
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions docs/circle_ci/Orbs/Docker/Check.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
- id: release_tag
run: |-
RELEASE_VERSION=$(curl -Ls --fail --retry 3 -o /dev/null -w %{url_effective} 'https://github.com/docker/docker-credential-helpers/releases/latest' | sed 's:.*/::')
echo ::set-output name=release_tag::$RELEASE_VERSION
echo "release_tag=$RELEASE_VERSION" >> $GITHUB_OUTPUT
if: "${{ fromJSON(inputs.use-docker-credentials-store) }}"
shell: bash
- run: |-
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- id: release_tag
run: |-
RELEASE_VERSION=$(curl -Ls --fail --retry 3 -o /dev/null -w %{url_effective} 'https://github.com/docker/docker-credential-helpers/releases/latest' | sed 's:.*/::')
echo ::set-output name=release_tag::$RELEASE_VERSION
echo "release_tag=$RELEASE_VERSION" >> $GITHUB_OUTPUT
- run: |-
HELPER_FILENAME="docker-credential-${{ env.HELPER_NAME }}"
if which "$HELPER_FILENAME" > /dev/null 2>&1; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- id: release_tag
run: |-
RELEASE_VERSION=$(curl -Ls --fail --retry 3 -o /dev/null -w %{url_effective} 'https://github.com/docker/docker-credential-helpers/releases/latest' | sed 's:.*/::')
echo ::set-output name=release_tag::$RELEASE_VERSION
echo "release_tag=$RELEASE_VERSION" >> $GITHUB_OUTPUT
- run: |-
HELPER_FILENAME="docker-credential-${{ env.HELPER_NAME }}"
if which "$HELPER_FILENAME" > /dev/null 2>&1; then
Expand Down
4 changes: 2 additions & 2 deletions docs/circle_ci/Orbs/Docker/InstallDockerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
- id: version
run: |-
DOCKERIZE_VERSION=$(curl --fail --retry 3 -Ls -o /dev/null -w %{url_effective} 'https://github.com/jwilder/dockerize/releases/latest' | sed 's:.*/::')
echo ::set-output name=version::$DOCKERIZE_VERSION
echo "version=$DOCKERIZE_VERSION" >> $GITHUB_OUTPUT
shell: bash
- run: |-
if [[ $VERSION == "latest" ]]; then VERSION="${{ steps.version.outputs.version }}"; fi
Expand All @@ -58,7 +58,7 @@ steps:
- id: version
run: |-
DOCKERIZE_VERSION=$(curl --fail --retry 3 -Ls -o /dev/null -w %{url_effective} 'https://github.com/jwilder/dockerize/releases/latest' | sed 's:.*/::')
echo ::set-output name=version::$DOCKERIZE_VERSION
echo "version=$DOCKERIZE_VERSION" >> $GITHUB_OUTPUT
- run: |-
if [[ $VERSION == "latest" ]]; then VERSION="${{ steps.version.outputs.version }}"; fi
curl -O --silent --show-error --location --fail --retry 3 "https://github.com/jwilder/dockerize/releases/download/$VERSION/dockerize-linux-amd64-$VERSION.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Docker/Publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ workflows:
- id: release_tag
run: |-
RELEASE_VERSION=$(curl -Ls --fail --retry 3 -o /dev/null -w %<url_effective>s 'https://github.com/docker/docker-credential-helpers/releases/latest' | sed 's:.*/::')
echo ::set-output name=release_tag::$RELEASE_VERSION
echo "release_tag=$RELEASE_VERSION" >> $GITHUB_OUTPUT
- run: |-
curl -L -o '${{ env.HELPER_FILENAME }}_archive' 'https://github.com/docker/docker-credential-helpers/releases/download/${{ env.RELEASE_TAG }}/${{ env.HELPER_FILENAME }}-${{ env.RELEASE_TAG }}-amd64.tar.gz'
tar xvf './${{ env.HELPER_FILENAME }}_archive'
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Node/InstallPackages.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
```yaml
- 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@v2
with:
path: "${{ steps.yarn-cache-dir-path.outputs.dir }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Node/Run.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ workflows:
```yaml
- uses: actions/checkout@v2
- 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@v2
with:
path: "${{ steps.npm-cache-dir.outputs.dir }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Node/Test.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ workflows:
```yaml
- uses: actions/checkout@v2
- 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@v2
with:
path: "${{ steps.npm-cache-dir.outputs.dir }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Python/InstallPackages.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
```yaml
- name: Get python version
id: python-version
run: echo '::set-output name=python-version::$(python -v)'
run: echo "python-version=$(python -v)" >> $GITHUB_OUTPUT
- uses: actions/cache@v2
with:
key: "${{ runner.os }}-${{ github.ref }}-python-${{ steps.python-version.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/circle_ci/Orbs/Python/Test.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v2
- name: Get python version
id: python-version
run: echo '::set-output name=python-version::$(python -v)'
run: echo "python-version=$(python -v)" >> $GITHUB_OUTPUT
- uses: actions/cache@v2
with:
key: "${{ runner.os }}-${{ github.ref }}-python-${{ steps.python-version.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}"
Expand Down
8 changes: 4 additions & 4 deletions docs/circle_ci/Orbs/Slack/Notify.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ runs:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.BRANCH_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -64,7 +64,7 @@ runs:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.TAG_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -83,7 +83,7 @@ steps:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.BRANCH_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -92,7 +92,7 @@ steps:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.TAG_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand Down
8 changes: 4 additions & 4 deletions docs/circle_ci/Orbs/Slack/OnHold.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.BRANCH_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -56,7 +56,7 @@ runs:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.TAG_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -75,7 +75,7 @@ steps:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.BRANCH_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand All @@ -84,7 +84,7 @@ steps:
shell: bash
run: |-
if [[ '${{ env.VALUE_TO_MATCH }}' =~ ${{ env.TAG_PATTERN }} ]]; then
echo ::set-output name=match::true
echo "match=true" >> $GITHUB_OUTPUT
fi
env:
VALUE_TO_MATCH: "${{ github.ref }}"
Expand Down
4 changes: 2 additions & 2 deletions docs/jenkins/Post.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
steps:
...
- name: snapshot post build job status
run: echo "::set-output name=aborted=${{ job.status == 'cancelled' }}"
run: echo "aborted=${{ job.status == 'cancelled' }}" >> $GITHUB_OUTPUT
id: __post_build
- name: powershell
shell: powershell
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
steps:
- name: snapshot post build workflow status
run: |-
echo "::set-output name=aborted=${{ contains(needs.*.result,'cancelled') }}"
echo "aborted=${{ contains(needs.*.result,'cancelled') }}" >> $GITHUB_OUTPUT
id: __post_build
- name: echo message
run: echo I will run if worfklow was aborted
Expand Down
2 changes: 1 addition & 1 deletion docs/travis_ci/Cache/Yarn.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cache:
```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
- name: Set up yarn cache
uses: actions/cache@v2
with:
Expand Down

0 comments on commit cc3983b

Please sign in to comment.