From 390c53a81ea2457ffe5a5a84bdea870bf8cb9d6d Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 25 Aug 2022 11:32:39 +0200 Subject: [PATCH] [v8.5.x] Build: Use specific nodejs version for levitate pipeline (#54211) Co-authored-by: Esteban Beltran --- .github/workflows/detect-breaking-changes-build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/detect-breaking-changes-build.yml b/.github/workflows/detect-breaking-changes-build.yml index 87096eaf159..2dbea66ae27 100644 --- a/.github/workflows/detect-breaking-changes-build.yml +++ b/.github/workflows/detect-breaking-changes-build.yml @@ -15,6 +15,10 @@ jobs: with: path: './pr' + - uses: actions/setup-node@v3 + with: + node-version: 16.16.0 + - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" @@ -56,6 +60,10 @@ jobs: path: './base' ref: ${{ github.event.pull_request.base.ref }} + - uses: actions/setup-node@v3 + with: + node-version: 16.16.0 + - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)"