mirror of https://github.com/apache/maven.git
[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:
parent
6034102535
commit
d98844cfdf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue