From 665da6bc219b64b5ea871a4288fd8399f4c0b574 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 25 Aug 2022 11:27:12 +0200 Subject: [PATCH] [v9.1.x] Build: Use specific nodejs version for levitate pipeline (#54212) 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 dd4049e869e..220dd14fb96 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)"