From f87e9187f15bb0894150bd15f7e13d7ce6d9eee4 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 3 May 2025 21:12:37 +0000 Subject: [PATCH] Fix: Replace deprecated set-output command with environment files approach Co-Authored-By: Toshihiro Nakamura --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bdfc81..512c311 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Set version id: set-version - run: ./gradlew properties | grep "^version:" | awk '{print $2}' | { read v; echo "::set-output name=version::$v"; } + run: ./gradlew properties | grep "^version:" | awk '{print $2}' | { read v; echo "version=$v" >> $GITHUB_OUTPUT; } - name: Print version run: echo ${{ steps.set-version.outputs.version }}