Skip to content

Commit

Permalink
Try printf to avoid set-output warning
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Aug 13, 2023
1 parent be64a32 commit cddd086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pg: [15, 14, 13, 12, 11, 10, 9.6, 9.5, 9.4, 9.3, 9.2, 9.1, '9.0', 8.4, 8.3, 8.2]
pg: [16, 15, 14, 13, 12, 11, 10, 9.6, 9.5, 9.4, 9.3, 9.2, 9.1, '9.0', 8.4, 8.3, 8.2]
steps:
- uses: actions/checkout@v3
- name: Build Image
Expand Down
4 changes: 2 additions & 2 deletions bin/pgxn-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ else
mv /tmp/$release.zip .
fi
if [[ -n "${GITHUB_OUTPUT-}" ]]; then
echo "bundle=$release.zip" >> $GITHUB_OUTPUT
printf "%s=%s\n" bundle "$release.zip" >> $GITHUB_OUTPUT
else
echo "::set-output name=bundle::$release.zip"
printf "::%s name=%s::%s\n" set-output bundle "$release.zip"
fi

0 comments on commit cddd086

Please sign in to comment.