changeset 31338:62ae909d8989 stable

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/ (grafted from 49972715a95add5b62bdaacf94bdd937c6eb6023)
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 22 Oct 2022 20:18:12 +0200
parents c94baad7be99
children 0fe1cb1e2f12
files .github/workflows/make.yaml
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Mon Oct 24 15:11:52 2022 +0200
+++ b/.github/workflows/make.yaml	Sat Oct 22 20:18:12 2022 +0200
@@ -71,7 +71,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
@@ -214,7 +214,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
@@ -434,7 +434,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