From 97b834189fff6078a19f05ce7c28d38f1d403291 Mon Sep 17 00:00:00 2001 From: IanCa Date: Thu, 12 Oct 2023 16:03:44 -0500 Subject: [PATCH] Don't use semi-deprecated style --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25625de2..01a48a12 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,9 +15,9 @@ jobs: - id: set-matrix run: | if [[ "${{ github.ref }}" == 'refs/heads/master' ]]; then - echo "::set-output name=matrix::[3.7, 3.9, 3.10, 3.11]" + echo "matrix=[3.7, 3.9, 3.10, 3.11]" >> $GITHUB_OUTPUT else - echo "::set-output name=matrix::[3.9]" + echo "matrix=[3.9]" >> $GITHUB_OUTPUT fi build: