[MNG-7004] Replacing set-env in the GitHub Actions workflow with the new way to set environment variables, since set-env is deprecated.

This commit is contained in:
Martin Kanters 2020-10-23 16:06:14 +02:00 committed by Martin Kanters
parent 6034102535
commit d98844cfdf
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ jobs:
else
echo "Integration tests will run against $target_user/$repo for master builds."
fi
echo "::set-env name=REPO_BRANCH::$target_branch"
echo "::set-env name=REPO_USER::$target_user"
echo "REPO_BRANCH=$target_branch" >> $GITHUB_ENV
echo "REPO_USER=$target_user" >> $GITHUB_ENV
- name: Checkout maven-integration-testing
uses: actions/checkout@v2