diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 389f2159..86c2c639 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,12 +58,12 @@ jobs: fi npm version --no-git-tag-version $VERSION_STRING - echo "::set-output name=version_build::${VERSION_STRING}+${RUN_NUMBER}" + echo "version_build=${VERSION_STRING}+${RUN_NUMBER}" >> $GITHUB_OUTPUT - name: Get npm cache directory id: npm-cache-dir run: | - echo "::set-output name=dir::$(npm config get cache)" + echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - uses: actions/cache@v2 id: npm-cache diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 89c2e906..8b123e65 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -34,7 +34,7 @@ jobs: id: version_step run: | PACKAGE_VERSION=$(node -p "require('./package.json').version") - echo "::set-output name=version::${PACKAGE_VERSION}" + echo "version=${PACKAGE_VERSION}" >> $GITHUB_OUTPUT - name: Install dependencies run: "npm ci" diff --git a/.github/workflows/sync-wiki.yml b/.github/workflows/sync-wiki.yml index a8da7b7f..5c71d10b 100644 --- a/.github/workflows/sync-wiki.yml +++ b/.github/workflows/sync-wiki.yml @@ -14,8 +14,8 @@ jobs: - id: get-commit-info run: | - echo "::set-output name=author::$(git log -1 --pretty=format:'%an <%ae>')" - echo "::set-output name=message::$(git show -s --format=%B)" + echo "author=$(git log -1 --pretty=format:'%an <%ae>')" >> $GITHUB_OUTPUT + echo "message=$(git show -s --format=%B)" >> $GITHUB_OUTPUT - run: git clone https://$GITHUB_TOKEN@github.com/vmware/vrealize-developer-tools.wiki.git /tmp/wiki-repo env: