From 25e260217d8de0a2056b20519a3789d5b48d3632 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Mon, 30 Oct 2023 14:48:33 +0900 Subject: [PATCH] chore: Replace deprecated command with environment file Signed-off-by: Jongwoo Han Signed-off-by: Jongwoo Han --- .github/workflows/lint-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 9689de486..23abed76c 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -31,7 +31,7 @@ jobs: run: | changed=$(ct list-changed --chart-dirs charts/fluent-operator --config charts/ct.yaml) if [[ -n "$changed" ]]; then - echo "::set-output name=changed::true" + echo "changed=true" >> $GITHUB_OUTPUT fi - name: Run chart-testing (lint) @@ -42,4 +42,4 @@ jobs: if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) - run: ct install --chart-dirs charts/fluent-operator --config charts/ct.yaml \ No newline at end of file + run: ct install --chart-dirs charts/fluent-operator --config charts/ct.yaml