From 5a19af4364de33e68aa13c2999f16c0ede9828b8 Mon Sep 17 00:00:00 2001 From: kvhnuke <10602065+kvhnuke@users.noreply.github.com> Date: Thu, 4 Jan 2024 15:08:11 -0800 Subject: [PATCH] fix: workflows --- .github/workflows/macos-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-deploy.yml b/.github/workflows/macos-deploy.yml index 99b99fba7..f42536b67 100644 --- a/.github/workflows/macos-deploy.yml +++ b/.github/workflows/macos-deploy.yml @@ -13,11 +13,11 @@ jobs: id: node-version run: | docker build -t enkrypt-build-container . - echo ::set-output name=NODE_VERSION::$(docker run --rm -v `pwd`:/home:rw enkrypt-build-container /bin/bash -c "node --version") + echo "NODE_VERSION=$(docker run --rm -v `pwd`:/home:rw enkrypt-build-container /bin/bash -c "node --version")" >> $GITHUB_OUTPUT - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - name: Cache yarn modules uses: actions/cache@v3