zillionare / python-project-wizard

A tool for creating skeleton python project, built with popular develop tools and conform to best practice.
https://zillionare.github.io/python-project-wizard/
BSD 3-Clause "New" or "Revised" License
123 stars 104 forks source link

The `set-output` command is deprecated issue #42

Closed zillionare closed 10 months ago

zillionare commented 10 months ago

Error :The set-output command is deprecated happends on github actions.

Anyhow, if you have lines like these in your workflow:

run: echo "::set-output name=KEY::VALUE"

Change them into:

run: echo "KEY=VALUE" >>$GITHUB_OUTPUT

from https://hynek.me/til/set-output-deprecation-github-actions/