Remove calls to set-output as now deprecated (#1657)

This commit is contained in:
Darragh Bailey 2022-11-03 18:30:57 +00:00 committed by GitHub
parent 87131a171f
commit 585cf6dd67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ jobs:
bundle exec rspec --color --format json --fail-fast --dry-run --tag acceptance --out report.json
tests="$(jq -c '[.examples[].full_description]' report.json)"
echo "::set-output name=matrix::${tests}"
echo "matrix=${tests}" >> ${GITHUB_OUTPUT}
run-tests:
needs: generate-matrix

View File

@ -32,7 +32,7 @@ jobs:
run: |
cd pkg/
GEM_PKG=$(ls -1 *.gem)
echo ::set-output name=artifact_name::${GEM_PKG}
echo "artifact_name=${GEM_PKG}" >> ${GITHUB_OUTPUT}
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.artifact_name.outputs.artifact_name }}