From abb063ffddcdf392d8172bb138571a2aed68bdb2 Mon Sep 17 00:00:00 2001 From: Hari Date: Tue, 22 Aug 2023 14:26:18 +0530 Subject: [PATCH] chore: update CI/CD to remove deprecated set-output command (#150) (#49) See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Harikrishnan Balagopal --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0f74f5..d0f4e1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: ref: ${{ github.event.inputs.commit_ref }} - id: get_sha run: | - echo "::set-output name=sha::$(git rev-parse HEAD)" + echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - uses: actions/github-script@v3 with: github-token: ${{ secrets.MOVE2KUBE_PATOKEN }}