Skip to content

Commit 3882dac

Browse files
authored
Use GITHUB_OUTPUT instead of deprecated set-output (#22)
1 parent 120c3bb commit 3882dac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
id: bundle
2828
run: |
2929
bundle install
30-
echo "::set-output name=exec::bundle exec"
30+
echo "exec=bundle exec" >> $GITHUB_OUTPUT
3131
if: "matrix.ruby <= '2.1'"
3232
- name: Run test
3333
run: ${{steps.bundle.outputs.exec}} rake test
3434
- id: build
3535
run: |
3636
rake build
37-
echo "::set-output name=pkg::${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}"
37+
echo "pkg=${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}" >> $GITHUB_OUTPUT
3838
env:
3939
RUNNING_OS: ${{matrix.os}}
4040
if: "matrix.ruby == '3.0'"

0 commit comments

Comments
 (0)