Skip to content

Commit

Permalink
fix: set-output is now deprecated (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisBrunner authored Oct 17, 2022
1 parent d324d17 commit 07b20f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- uses: actions/checkout@v1
- id: images
run: |
echo ::set-output name=value::$IMAGES
echo "value=$IMAGES" >> $GITHUB_OUTPUT
env:
IMAGES: |
[{"alt":"Cool pic","image_url":"https://via.placeholder.com/150","caption":"Cool description"}]
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
- uses: actions/checkout@v1
- id: actions
run: |
echo ::set-output name=value::$ACTIONS
echo "value=$ACTIONS" >> $GITHUB_OUTPUT
env:
ACTIONS: |
[{"label":"Click Me","description":"Click me to get free RAM","identifier":"sent_to_webhook"}]
Expand Down

0 comments on commit 07b20f5

Please sign in to comment.