Skip to content

Commit

Permalink
Merge pull request #82 from aquaproj/fix/use-github_output
Browse files Browse the repository at this point in the history
fix: use GITHUB_OUTPUT instead of set-output
  • Loading branch information
suzuki-shunsuke authored Oct 16, 2022
2 parents 2f8ceb8 + 8f9205b commit 3977306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ runs:
id: go_required
run: |
if grep '\- import:' aqua/test.yaml | sed 's| - import: ../\(.*\)/pkg.yaml|\1/registry.yaml|' | xargs cat | grep "type: go" > /dev/null 2>&1; then
echo "::set-output name=value::true"
echo "value=true" >> "$GITHUB_OUTPUT"
else
echo "::set-output name=value::false"
echo "value=false" >> "$GITHUB_OUTPUT"
fi
- name: Install Go
Expand Down

0 comments on commit 3977306

Please sign in to comment.