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/
Этот коммит содержится в:
Dominik Gedon 2025-03-24 11:05:30 +01:00 коммит произвёл GitHub
родитель 4a4fd8ab3a
коммит 74fa488023
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 4 добавлений и 1 удалений

2
.github/workflows/gorelease.yml предоставленный
Просмотреть файл

@ -33,7 +33,7 @@ jobs:
OUTPUT=$(gorelease 2>&1 || exit 0) OUTPUT=$(gorelease 2>&1 || exit 0)
echo "${OUTPUT}" echo "${OUTPUT}"
OUTPUT="${OUTPUT//$'\n'/%0A}" OUTPUT="${OUTPUT//$'\n'/%0A}"
echo "::set-output name=report::$OUTPUT" echo "report=$OUTPUT" >> $GITHUB_OUTPUT
- name: Comment Report - name: Comment Report
continue-on-error: true continue-on-error: true
uses: marocchino/sticky-pull-request-comment@v2 uses: marocchino/sticky-pull-request-comment@v2

Просмотреть файл

@ -11,6 +11,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
### Added ### Added
- Step text is added to "step is undefined" error - ([669](https://github.com/cucumber/godog/pull/669) - [vearutop](https://github.com/vearutop)) - Step text is added to "step is undefined" error - ([669](https://github.com/cucumber/godog/pull/669) - [vearutop](https://github.com/vearutop))
### Changed
- Replace deprecated `::set-output` - ([681](https://github.com/cucumber/godog/pull/681) - [nodeg](https://github.com/nodeg))
### Fixed ### Fixed
- 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)) - 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))
- 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)) - 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))