From 87914b27f5e62b9925bd96bc786983c96be0b55a Mon Sep 17 00:00:00 2001 From: jongwooo Date: Sun, 5 Feb 2023 21:09:47 +0900 Subject: [PATCH] Replace deprecated command with environment file Signed-off-by: jongwooo --- .github/workflows/release-ga.yml | 2 +- .github/workflows/release-milestone.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-ga.yml b/.github/workflows/release-ga.yml index df8636eb..92a251e3 100644 --- a/.github/workflows/release-ga.yml +++ b/.github/workflows/release-ga.yml @@ -65,7 +65,7 @@ jobs: env: PROJECT_VERSION: ${{ env.PROJECT_VERSION }} run: | - echo "::set-output name=project-version::$PROJECT_VERSION" + echo "project-version=$PROJECT_VERSION" >> $GITHUB_OUTPUT promote: runs-on: ubuntu-latest diff --git a/.github/workflows/release-milestone.yml b/.github/workflows/release-milestone.yml index 6ac557c2..04ccb66b 100644 --- a/.github/workflows/release-milestone.yml +++ b/.github/workflows/release-milestone.yml @@ -70,7 +70,7 @@ jobs: env: PROJECT_VERSION: ${{ env.PROJECT_VERSION }} run: | - echo "::set-output name=project-version::$PROJECT_VERSION" + echo "project-version=$PROJECT_VERSION" >> $GITHUB_OUTPUT promote: runs-on: ubuntu-latest