changeset 31326:49972715a95a

GitHub-CI: Replace deprecated set-output command with output file. * .github/workflows/make.yaml (ubuntu, macos, windows): The set-output command is deprecated. Use output file instead. See: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 22 Oct 2022 20:18:12 +0200
parents 52ccba0f1af9
children 53987cfe08a0
files .github/workflows/make.yaml
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Sat Oct 22 14:30:47 2022 +0200
+++ b/.github/workflows/make.yaml	Sat Oct 22 20:18:12 2022 +0200
@@ -62,7 +62,7 @@
         # create human readable timestamp
         id: ccache_cache_timestamp
         run: |
-          echo "::set-output name=TIMESTAMP::$(date +"%Y-%m-%d_%H-%M-%S")"
+          echo "timestamp=$(date +"%Y-%m-%d_%H-%M-%S")" >> $GITHUB_OUTPUT
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
@@ -213,7 +213,7 @@
         # create human readable timestamp
         id: ccache_cache_timestamp
         run: |
-          echo "::set-output name=TIMESTAMP::$(date +"%Y-%m-%d_%H-%M-%S")"
+          echo "timestamp=$(date +"%Y-%m-%d_%H-%M-%S")" >> $GITHUB_OUTPUT
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
@@ -441,7 +441,7 @@
         # Create human readable timestamp
         id: ccache_cache_timestamp
         run: |
-          echo "::set-output name=TIMESTAMP::$(date +"%Y-%m-%d_%H-%M-%S")"
+          echo "timestamp=$(date +"%Y-%m-%d_%H-%M-%S")" >> $GITHUB_OUTPUT
 
       - name: restore ccache
         # Setup the github cache used to maintain the ccache from one job to the next