From 585cf6dd6769b8abd33e75fb72a17812e8dfd778 Mon Sep 17 00:00:00 2001 From: Darragh Bailey Date: Thu, 3 Nov 2022 18:30:57 +0000 Subject: [PATCH] Remove calls to set-output as now deprecated (#1657) --- .github/workflows/integration-tests.yml | 2 +- .github/workflows/publish-gem-package.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 0a1c33d..7564342 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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 diff --git a/.github/workflows/publish-gem-package.yml b/.github/workflows/publish-gem-package.yml index 4f20488..99a1c1b 100644 --- a/.github/workflows/publish-gem-package.yml +++ b/.github/workflows/publish-gem-package.yml @@ -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 }}