Skip to content

Commit 3973215

Browse files
authored
Merge pull request #9 from ikalnytskyi/remove-set-output
Use `$GITHUB_OUTPUT` instead of `::set-output`
2 parents e5b7793 + acc2f7f commit 3973215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ runs:
7979
- name: Expose connection URI
8080
run: |
8181
CONNECTION_URI="postgresql://${{ inputs.username }}:${{ inputs.password }}@localhost:${{inputs.port}}/${{ inputs.database }}"
82-
echo ::set-output name=value::$CONNECTION_URI
82+
echo "value=$CONNECTION_URI" >> $GITHUB_OUTPUT
8383
shell: bash
8484
id: connection-uri

0 commit comments

Comments
 (0)