From 342e8a9866c679781556b3908f1ae44fd0ba5eff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:36:14 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 4 to 6.3.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 4 to 6.3.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v4...v6.3.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5989cef845..5f2a955e699 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: - name: Install @actions/artifact run: npm install @actions/artifact - name: Build and upload artifacts - uses: actions/github-script@v4 + uses: actions/github-script@v6.3.0 id: boards-list with: script: | @@ -111,7 +111,7 @@ jobs: include-list: ${{ steps.compile-list.outputs.result }} steps: - name: Join build lists - uses: actions/github-script@v4 + uses: actions/github-script@v6.3.0 id: compile-list with: script: | @@ -158,7 +158,7 @@ jobs: node-version: '14.x' - name: Install js-yaml run: npm install js-yaml - - uses: actions/github-script@v4 + - uses: actions/github-script@v6.3.0 id: core-list with: script: | @@ -187,7 +187,7 @@ jobs: node-version: '14.x' - name: Install js-yaml run: npm install js-yaml - - uses: actions/github-script@v4 + - uses: actions/github-script@v6.3.0 id: boards-list with: script: | @@ -261,7 +261,7 @@ jobs: nightly-include: ${{ steps.nightly-list.outputs.result }} steps: - name: Create nightly list - uses: actions/github-script@v4 + uses: actions/github-script@v6.3.0 id: nightly-list with: script: | @@ -312,7 +312,7 @@ jobs: - name: Install js-yaml run: npm install js-yaml - name: Aggregate Metadata - uses: actions/github-script@v4 + uses: actions/github-script@v6.3.0 id: aggregate-metadata with: script: | @@ -330,7 +330,7 @@ jobs: result-encoding: string - name: Organize Metadata - uses: actions/github-script@v4 + uses: actions/github-script@v6.3.0 id: organize-metadata with: script: | @@ -387,7 +387,7 @@ jobs: id: changed-files with: format: 'json' - - uses: actions/github-script@v4 + - uses: actions/github-script@v6.3.0 id: board-changes with: script: | @@ -395,7 +395,7 @@ jobs: const boardChanges = changedFiles.filter(f => f.startsWith('app/boards')); return boardChanges.length ? 'true' : 'false'; result-encoding: string - - uses: actions/github-script@v4 + - uses: actions/github-script@v6.3.0 id: core-changes with: script: |