Skip to content

Commit e4c8f27

Browse files
committed
Avoid deprecated ::set-output workflow command.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent c024308 commit e4c8f27

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/local-test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ jobs:
1818
run: npm run package
1919
- name: Check whether integrations tests should be enabled
2020
id: enable_integration_tests
21-
env:
22-
ZULIP_API_KEY: ${{ secrets.ZULIP_API_KEY }}
2321
run: |
24-
echo "::set-output name=value::${{ env.ZULIP_API_KEY != '' }}"
22+
echo 'value=${{ secrets.ZULIP_API_KEY != '' }}' >> "$GITHUB_OUTPUT"
2523
- name: Send a stream message
2624
uses: ./send-message
2725
with:

0 commit comments

Comments
 (0)