From 0a87d85c7e687b06033f713df6e698b8e7fd729e Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 22 Feb 2024 22:12:44 +0700 Subject: [PATCH] ci: Stop using deprecated `::set-output`. This has been deprecated and the replacement functionality is described here: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/coverage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 30a385b3f..b90b40925 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -90,6 +90,7 @@ jobs: - name: Get date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v4 with: