From 311f469adb910a688a8cc5d16eed1b3b69a1976c Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Sat, 21 Jan 2023 13:09:36 +0900 Subject: [PATCH] Migrate `set-output` to `$GITHUB_OUTPUT` https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d49d8c..18fc0d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: - id: versions run: | versions=$(curl -s 'https://cache.ruby-lang.org/pub/misc/ci_versions/all.json' | jq -c '. + ["2.5"]') - echo "::set-output name=value::${versions}" + echo "value=${versions}" >> $GITHUB_OUTPUT test: needs: ruby-versions name: build (${{ matrix.ruby }} / ${{ matrix.os }})