Skip to content

Commit 74fa488

Browse files
authored
Replace deprecated ::set-output (#681)
As per the deprecation warning and explanation at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent 4a4fd8a commit 74fa488

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/gorelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
OUTPUT=$(gorelease 2>&1 || exit 0)
3434
echo "${OUTPUT}"
3535
OUTPUT="${OUTPUT//$'\n'/%0A}"
36-
echo "::set-output name=report::$OUTPUT"
36+
echo "report=$OUTPUT" >> $GITHUB_OUTPUT
3737
- name: Comment Report
3838
continue-on-error: true
3939
uses: marocchino/sticky-pull-request-comment@v2

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
1111
### Added
1212
- Step text is added to "step is undefined" error - ([669](https://github.com/cucumber/godog/pull/669) - [vearutop](https://github.com/vearutop))
1313

14+
### Changed
15+
- Replace deprecated `::set-output` - ([681](https://github.com/cucumber/godog/pull/681) - [nodeg](https://github.com/nodeg))
16+
1417
### Fixed
1518
- fix(errors): fix(errors): Fix expected Step argument count for steps with `context.Context` ([679](https://github.com/cucumber/godog/pull/679) - [tigh-latte](https://github.com/tigh-latte))
1619
- fix(formatter): On concurrent execution, execute formatter at end of Scenario - ([645](https://github.com/cucumber/godog/pull/645) - [tigh-latte](https://github.com/tigh-latte))

0 commit comments

Comments
 (0)