Skip to content

Commit ae3c150

Browse files
committed
set-output is derprecated, seeing if this corrects an issue in build darwin
1 parent 655fbea commit ae3c150

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)