From e7c2123faa0a3caa1ed83bc11820db40e00d01ce Mon Sep 17 00:00:00 2001 From: vharseko Date: Wed, 30 Aug 2023 10:51:13 +0300 Subject: [PATCH] Update build.yml fix The `set-output` command is deprecated and will be disabled soon --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d06f2888e7..0e6af023b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,10 +31,10 @@ jobs: restore-keys: ${{ runner.os }}-m2-repository - name: Set Integration Test Environment if: matrix.os == 'ubuntu-latest' - run: > - echo '::set-output name=MAVEN_PROFILE_FLAG::-P integration-test' - && echo '::set-output name=MAVEN_VERIFY_STAGE::verify' - && echo "127.0.0.1 openam.local" | sudo tee -a /etc/hosts + run: | + echo "MAVEN_PROFILE_FLAG=-P integration-test" >> $GITHUB_OUTPUT + echo "MAVEN_VERIFY_STAGE=verify" >> $GITHUB_OUTPUT + echo "127.0.0.1 openam.local" | sudo tee -a /etc/hosts id: maven-profile-flag - name: Build with Maven env: