소스 검색

Merge pull request #3980 from nextcloud/jtr/chore-github-output

build(qa): Switch deprecated `set-output` to `$GITHUB_OUTPUT`
Andy Scherzinger 1 년 전
부모
커밋
2bee9ea0ac
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/workflows/qa.yml

+ 1 - 1
.github/workflows/qa.yml

@@ -20,7 +20,7 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Check if secrets are available
-        run: echo "::set-output name=ok::${{ secrets.KS_PASS != '' }}"
+        run: echo "ok=${{ secrets.KS_PASS != '' }}" >> "$GITHUB_OUTPUT"
         id: check-secrets
       - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
         if: ${{ steps.check-secrets.outputs.ok == 'true' }}