File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -95,15 +95,15 @@ jobs:
9595 id : set-metadata
9696 run : |
9797 ./libexec/metadata ruby_platform | tee ruby_platform
98- echo "::set-output name= RUBY_PLATFORM:: $(cat ruby_platform)"
98+ echo "RUBY_PLATFORM= $(cat ruby_platform)" >> $GITHUB_OUTPUT
9999 ./libexec/metadata gem_platform | tee gem_platform
100- echo "::set-output name= GEM_PLATFORM:: $(cat gem_platform)"
100+ echo "GEM_PLATFORM= $(cat gem_platform)" >> $GITHUB_OUTPUT
101101 ./libexec/metadata gem_version | tee gem_version
102- echo "::set-output name= GEM_VERSION:: $(cat gem_version)"
102+ echo "GEM_VERSION= $(cat gem_version)" >> $GITHUB_OUTPUT
103103 ./libexec/metadata node_version | tee node_version
104- echo "::set-output name= NODE_VERSION:: $(cat node_version)"
104+ echo "NODE_VERSION= $(cat node_version)" >> $GITHUB_OUTPUT
105105 ./libexec/metadata libv8_version | tee libv8_version
106- echo "::set-output name= LIBV8_VERSION:: $(cat libv8_version)"
106+ echo "LIBV8_VERSION= $(cat libv8_version)" >> $GITHUB_OUTPUT
107107 - name : Download Node.js
108108 run : |
109109 ./libexec/download-node ${{ steps.set-metadata.outputs.NODE_VERSION }}
You can’t perform that action at this time.
0 commit comments