Skip to content

Commit

Permalink
ci: Stop using deprecated ::set-output. (#7136)
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
waywardmonkeys committed Feb 22, 2024
1 parent 143a35d commit c0621cb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c0621cb

Please sign in to comment.