From 98ce623923a79cefa8d0dcd511007aeb138c0f11 Mon Sep 17 00:00:00 2001 From: Jordan Olshevski Date: Fri, 17 Nov 2023 12:41:02 -0600 Subject: [PATCH] Correct output syntax --- .github/workflows/k8scompat.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/k8scompat.yaml b/.github/workflows/k8scompat.yaml index bd9498e4..da42092c 100644 --- a/.github/workflows/k8scompat.yaml +++ b/.github/workflows/k8scompat.yaml @@ -38,8 +38,8 @@ jobs: - name: Download kubebuilder assets id: kubebuilder-assets run: | - echo "name=dir::$(go run sigs.k8s.io/controller-runtime/tools/setup-envtest@latest use -p path $APISERVER_VERSION)" >> $GITHUB_OUTPUT - echo "name=upstream-dir::$(go run sigs.k8s.io/controller-runtime/tools/setup-envtest@latest use -p path ${{ matrix.upstreamApiserverVersion }})" >> $GITHUB_OUTPUT + echo "dir=$(go run sigs.k8s.io/controller-runtime/tools/setup-envtest@latest use -p path $APISERVER_VERSION)" >> $GITHUB_OUTPUT + echo "upstream-dir=$(go run sigs.k8s.io/controller-runtime/tools/setup-envtest@latest use -p path ${{ matrix.upstreamApiserverVersion }})" >> $GITHUB_OUTPUT - name: Cache kubebuilder assets uses: actions/cache@v2