Skip to content

Commit

Permalink
remove deprecated set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninja3047 authored and ekilmer committed Oct 24, 2022
1 parent 83ddd05 commit e847e9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg_ci_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
echo "CCACHE_DIR=${{ github.workspace }}/.ccache" >> $GITHUB_ENV
echo "CMAKE_C_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
echo "CMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
echo ::set-output name=timestamp::$(date +"%Y-%m-%d-%H:%M:%S" --utc)
echo "timestamp=$(date +"%Y-%m-%d-%H:%M:%S" --utc)" >> ${GITHUB_OUTPUT}
- name: ccache cache files
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg_ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
echo "CCACHE_DIR=${{ github.workspace }}/.ccache" >> $GITHUB_ENV
echo "CMAKE_C_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
echo "CMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
echo ::set-output name=timestamp::$(python -c 'from datetime import datetime; print(datetime.utcnow().strftime("%Y-%m-%d-%H:%M:%S"))')
echo "timestamp=$(python -c 'from datetime import datetime; print(datetime.utcnow().strftime("%Y-%m-%d-%H:%M:%S"))')" >> ${GITHUB_OUTPUT}
- name: ccache cache files
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg_ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
shell: bash
run: |
{ read -r vcpkg_repo_url && read -r vcpkg_commit; } < ./vcpkg_info.txt || exit 1
echo ::set-output name=repo_url::${vcpkg_repo_url}
echo ::set-output name=commit::${vcpkg_commit}
echo "repo_url=${vcpkg_repo_url}" >> ${GITHUB_OUTPUT}
echo "commit=${vcpkg_commit}" >> ${GITHUB_OUTPUT}
# Setup Visual Studio Dev Environment (x64, default version/toolset)
- uses: ilammy/[email protected]
Expand Down

0 comments on commit e847e9b

Please sign in to comment.