Skip to content

Commit 0648c00

Browse files
committed
(CONT-404) Address set-output deprecation
Prior to this commit, this module contained a set-output command in the integration_test.yml file. This is a deprecated github command that will stop working by the end of may. This commit aims to update the command so that it does not break once the syntax is fully deprecated.
1 parent 9d8ce40 commit 0648c00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
id: get-matrix
5656
run: |
5757
if [ '${{ github.repository_owner }}' == 'puppetlabs' ]; then
58-
echo "::set-output name=matrix::{'platform':['centos-7'],'collection':['puppet6-nightly']}"
58+
echo "matrix={'platform':['centos-7'],'collection':['puppet6-nightly']}" >> $GITHUB_OUTPUT
5959
else
60-
echo "::set-output name=matrix::{}"
60+
echo "matrix={}" >> $GITHUB_OUTPUT
6161
fi
6262
6363
- name: "Honeycomb: Record Setup Test Matrix time"

0 commit comments

Comments
 (0)