From 6e28b9f835de378cc6c34934d56ce3a6483008e0 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 29 Dec 2022 00:14:29 -0500 Subject: [PATCH] chore: drop set-output usage --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b55dd85e8..1d4ad64a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: | json=$(python .github/commands/matrix) echo $json - echo "::set-output name=matrix::$(echo "$json")" + echo "matrix=$json" >> $GITHUB_OUTPUT - name: upload packages uses: actions/upload-artifact@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aae9416bc..24b7458d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: - name: output version id: version - run: echo "::set-output name=version::$(cat build/next-version)" + run: echo "version=$(cat build/next-version)" >> $GITHUB_OUTPUT - name: upload packages uses: actions/upload-artifact@v3