Skip to content

Commit

Permalink
Merge pull request #11517 from ihostage/fix-ci-warnings
Browse files Browse the repository at this point in the history
Use environment file instead `set-output`
  • Loading branch information
mergify[bot] committed Oct 26, 2022
2 parents a83c8cb + 3608021 commit fc7f2d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
if [ "$GITHUB_EVENT_NAME" = "schedule" ]; then
AKKA_VERSION=$(curl -s https://oss.sonatype.org/content/repositories/snapshots/com/typesafe/akka/akka-actor_2.13/ | grep -oEi '2\.6\.[0-9]+\+[RCM0-9]+-[0-9a-f]{8}-SNAPSHOT' | sort -V | tail -n 1)
AKKA_HTTP_VERSION=$(curl -s https://oss.sonatype.org/content/repositories/snapshots/com/typesafe/akka/akka-http-core_2.13/ | grep -oEi '10\.1\.[0-9]+\+[RCM0-9]+-[0-9a-f]{8}-SNAPSHOT' | sort -V | tail -n 1)
echo "::set-output name=akka_opts::-Dakka.version=$AKKA_VERSION"
echo "::set-output name=akka_http_opts::-Dakka.http.version=$AKKA_HTTP_VERSION"
echo "akka_opts=-Dakka.version=$AKKA_VERSION" >> $GITHUB_OUTPUT
echo "akka_http_opts=-Dakka.http.version=$AKKA_HTTP_VERSION" >> $GITHUB_OUTPUT
else
echo "::set-output name=akka_opts::"
echo "::set-output name=akka_http_opts::"
echo "akka_opts=" >> $GITHUB_OUTPUT
echo "akka_http_opts=" >> $GITHUB_OUTPUT
fi
prefetch-for-caching:
Expand Down

0 comments on commit fc7f2d1

Please sign in to comment.