From aabf7ef62f989944c28128eca3c1db2355a433dd Mon Sep 17 00:00:00 2001 From: Keishi Tanaka Date: Sat, 21 Jan 2023 13:59:20 +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 97423ef..7b326e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: run: | git fetch --force --no-tags origin 'refs/tags/v*:refs/tags/v*' bundle exec rake build - echo "::set-output name=pkg::${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}" + echo "pkg=${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}" >> $GITHUB_OUTPUT env: RUNNING_OS: ${{matrix.os}} if: ${{ matrix.ruby == '3.1' && !startsWith(matrix.os, 'ubuntu') }}