File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ jobs:
140140 echo "CCACHE_DIR=${{ github.workspace }}/.ccache" >> $GITHUB_ENV
141141 echo "CMAKE_C_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
142142 echo "CMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
143- echo ::set-output name= timestamp:: $(date +"%Y-%m-%d-%H:%M:%S" --utc)
143+ echo " timestamp= $(date +"%Y-%m-%d-%H:%M:%S" --utc)" >> ${GITHUB_OUTPUT}
144144
145145 - name : ccache cache files
146146 uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137137 echo "CCACHE_DIR=${{ github.workspace }}/.ccache" >> $GITHUB_ENV
138138 echo "CMAKE_C_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
139139 echo "CMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
140- echo ::set-output name= timestamp:: $(python -c 'from datetime import datetime; print(datetime.utcnow().strftime("%Y-%m-%d-%H:%M:%S"))')
140+ echo " timestamp= $(python -c 'from datetime import datetime; print(datetime.utcnow().strftime("%Y-%m-%d-%H:%M:%S"))')" >> ${GITHUB_OUTPUT}
141141
142142 - name : ccache cache files
143143 uses : actions/cache@v3
Original file line number Diff line number Diff line change 7272 shell : bash
7373 run : |
7474 { read -r vcpkg_repo_url && read -r vcpkg_commit; } < ./vcpkg_info.txt || exit 1
75- echo ::set-output name= repo_url:: ${vcpkg_repo_url}
76- echo ::set-output name= commit:: ${vcpkg_commit}
75+ echo " repo_url= ${vcpkg_repo_url}" >> ${GITHUB_OUTPUT }
76+ echo " commit= ${vcpkg_commit}" >> ${GITHUB_OUTPUT }
7777
7878 # Setup Visual Studio Dev Environment (x64, default version/toolset)
7979
You can’t perform that action at this time.
0 commit comments