Skip to content

Commit

Permalink
Update set-output command in workflows (#6058)
Browse files Browse the repository at this point in the history
`set-output` command has been deprecated and warning messages are
printed within the logs. See more [here](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/)
  • Loading branch information
eddumelendez committed Oct 25, 2022
1 parent 77f71b8 commit e97b58b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-examples.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix)
echo $TASKS
echo "::set-output name=matrix::{\"gradle_args\":$TASKS}"
echo "matrix={\"gradle_args\":$TASKS}" >> $GITHUB_OUTPUT
check:
needs: find_gradle_jobs
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix)
echo $TASKS
echo "::set-output name=matrix::{\"gradle_args\":$TASKS}"
echo "matrix={\"gradle_args\":$TASKS}" >> $GITHUB_OUTPUT
check:
needs: [find_gradle_jobs]
strategy:
Expand Down

0 comments on commit e97b58b

Please sign in to comment.