From 76b4618a6ac7aa58acd9af092d1c94b774043b09 Mon Sep 17 00:00:00 2001 From: Keishi Tanaka Date: Sat, 21 Jan 2023 13:44:41 +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 519fd8a..0d4bda5 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/cruby.json' | jq -c '. - ["2.7"]') - echo "::set-output name=value::${versions}" + echo "value=${versions}" >> $GITHUB_OUTPUT test: needs: ruby-versions name: build (${{ matrix.ruby }} / ${{ matrix.os }})