Skip to content

This release includes an update to how output was handled

Compare
Choose a tag to compare
@jeffpatton1971 jeffpatton1971 released this 18 Jan 14:57
· 7 commits to main since this release

[0.0.1.7] - 2024-01-18

Warning: The set-output command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: GitHub Actions: Deprecating save-state and set-output commands

Unsupported

- name: Set output
run: echo "::set-output name={name}::{value}"

Supported

- name: Set output
run: echo "{name}={value}" >> $GITHUB_OUTPUT

What's Changed:

  1. Updated action.yml with new output format

Full Changelog: v0.0.1.0...v0.0.1.7