From 64eafb58b6e5a93118ce577bf80894302202c73e Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Thu, 7 Sep 2023 20:35:12 +0900 Subject: [PATCH] Replace deprecated ::set-output with $GITHUB_OUTPUT (#2679) --- .github/workflows/arc-publish-chart.yaml | 2 +- .github/workflows/arc-validate-chart.yaml | 2 +- .github/workflows/gha-validate-chart.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/arc-publish-chart.yaml b/.github/workflows/arc-publish-chart.yaml index e5c9ce18..f0290797 100644 --- a/.github/workflows/arc-publish-chart.yaml +++ b/.github/workflows/arc-publish-chart.yaml @@ -70,7 +70,7 @@ jobs: run: | changed=$(ct list-changed --config charts/.ci/ct-config.yaml) if [[ -n "$changed" ]]; then - echo "::set-output name=changed::true" + echo "changed=true" >> $GITHUB_OUTPUT fi - name: Run chart-testing (lint) diff --git a/.github/workflows/arc-validate-chart.yaml b/.github/workflows/arc-validate-chart.yaml index 5e5f8b22..7cdc5833 100644 --- a/.github/workflows/arc-validate-chart.yaml +++ b/.github/workflows/arc-validate-chart.yaml @@ -79,7 +79,7 @@ jobs: run: | changed=$(ct list-changed --config charts/.ci/ct-config.yaml) if [[ -n "$changed" ]]; then - echo "::set-output name=changed::true" + echo "changed=true" >> $GITHUB_OUTPUT fi - name: Run chart-testing (lint) diff --git a/.github/workflows/gha-validate-chart.yaml b/.github/workflows/gha-validate-chart.yaml index e2cf3c3d..0dd64fb2 100644 --- a/.github/workflows/gha-validate-chart.yaml +++ b/.github/workflows/gha-validate-chart.yaml @@ -76,7 +76,7 @@ jobs: ct version changed=$(ct list-changed --config charts/.ci/ct-config-gha.yaml) if [[ -n "$changed" ]]; then - echo "::set-output name=changed::true" + echo "changed=true" >> $GITHUB_OUTPUT fi - name: Run chart-testing (lint)