Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya committed Dec 30, 2023
1 parent fa36235 commit a8827ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
fi
echo "BOOST_SELF=$(basename $GITHUB_WORKSPACE)" >> $GITHUB_ENV
echo "BOOST_ROOT=$GITHUB_WORKSPACE/boost-root" >> $GITHUB_ENV
echo "::set-output name=boost_self::$(basename $GITHUB_WORKSPACE)"
echo "::set-output name=boost_root::$GITHUB_WORKSPACE/boost-root"
echo "boost_self=$(basename $GITHUB_WORKSPACE)" >> $GITHUB_OUTPUT
echo "boost_root=$GITHUB_WORKSPACE/boost-root" >> $GITHUB_OUTPUT
- name: Clone boostorg/boost
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/headers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
fi
echo "BOOST_SELF=$(basename $GITHUB_WORKSPACE)" >> $GITHUB_ENV
echo "BOOST_ROOT=$GITHUB_WORKSPACE/boost-root" >> $GITHUB_ENV
echo "::set-output name=boost_self::$(basename $GITHUB_WORKSPACE)"
echo "::set-output name=boost_root::$GITHUB_WORKSPACE/boost-root"
echo "boost_self=$(basename $GITHUB_WORKSPACE)" >> $GITHUB_OUTPUT
echo "boost_root=$GITHUB_WORKSPACE/boost-root" >> $GITHUB_OUTPUT
- name: Clone boostorg/boost
run: |
Expand Down

0 comments on commit a8827ea

Please sign in to comment.