From 48d15ed1fb8d6edf099d543bb6840fb853c47db1 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Thu, 14 Aug 2025 14:54:20 +0300 Subject: [PATCH 1/2] ci/check_secrets: Remove deprecated set-output --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70712610c..bae883f96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,17 +146,17 @@ jobs: check_secrets: permissions: contents: none - name: Check Docker secrets present for installer tests + name: Check presence of secrets runs-on: ubuntu-24.04 outputs: docker: ${{ steps.secret.outputs.docker }} steps: - - name: Check for secrets + - name: Check for DockerHub secrets id: secret env: _DOCKER_SECRETS: ${{ secrets.DOCKERHUB_USERNAME }}${{ secrets.DOCKERHUB_TOKEN }} run: | - echo "::set-output name=docker::${{ env._DOCKER_SECRETS != '' }}" + echo "docker=${{ env._DOCKER_SECRETS != '' }}" >> $GITHUB_OUTPUT docker_push_image: needs: [tests, vm_tests, check_secrets] From 26dbda6302fc0767153fdccb81f15319cca349f1 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Thu, 14 Aug 2025 14:54:45 +0300 Subject: [PATCH 2/2] ci/docker_push_image: Remove dead step This step is now part of the check_secrets job and the output is completely unused. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bae883f96..2f47f13e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -169,12 +169,6 @@ jobs: github.ref_name == 'master' runs-on: ubuntu-24.04 steps: - - name: Check for secrets - id: secret - env: - _DOCKER_SECRETS: ${{ secrets.DOCKERHUB_USERNAME }}${{ secrets.DOCKERHUB_TOKEN }} - run: | - echo "::set-output name=docker::${{ env._DOCKER_SECRETS != '' }}" - uses: actions/checkout@v5 with: fetch-depth: 0