Skip to content

Commit e847e9b

Browse files
Ninja3047ekilmer
authored andcommitted
remove deprecated set-output
1 parent 83ddd05 commit e847e9b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/vcpkg_ci_amd64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/vcpkg_ci_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/vcpkg_ci_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
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
- uses: ilammy/[email protected]

0 commit comments

Comments
 (0)