diff options
author | David Robertson <davidr@element.io> | 2022-10-18 13:45:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 13:45:34 +0100 |
commit | a8677bc9b847b66baff8b4ff0eef7ffc63e005fd (patch) | |
tree | ee7ce1e7a66020affccb365df498a012a22b7fc4 /.github/workflows/release-artifacts.yml | |
parent | Flush stdout/err in Dockerfile-workers before replacing the current process (... (diff) | |
download | synapse-a8677bc9b847b66baff8b4ff0eef7ffc63e005fd.tar.xz |
Deal with some GHA deprecation warnings (#14216)
Diffstat (limited to '.github/workflows/release-artifacts.yml')
-rw-r--r-- | .github/workflows/release-artifacts.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index 1c004fbc11..e1b1e29093 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -34,7 +34,7 @@ jobs: if [[ $GITHUB_REF == refs/tags/* ]]; then dists=$(scripts-dev/build_debian_packages.py --show-dists-json) fi - echo "::set-output name=distros::$dists" + echo "distros=$dists" >> "$GITHUB_OUTPUT" # map the step outputs to job outputs outputs: distros: ${{ steps.set-distros.outputs.distros }} |