From 415b93465cbec28ff6504a54d5a2502e3d8eb8f4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:04:42 -0400 Subject: [PATCH] =?UTF-8?q?chore(deps):=20update=20actions/github-script?= =?UTF-8?q?=20action=20to=20v6=20=F0=9F=8C=9F=20(#25280)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Emily Rohrbough --- .github/workflows/update-browser-versions.yml | 10 +++++----- .github/workflows/update_v8_snapshot_cache.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update-browser-versions.yml b/.github/workflows/update-browser-versions.yml index a982ba996a7e..ba1ea3a28e2f 100644 --- a/.github/workflows/update-browser-versions.yml +++ b/.github/workflows/update-browser-versions.yml @@ -29,7 +29,7 @@ jobs: node-version: 14 - name: Check for new Chrome versions id: get-versions - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { getVersions } = require('./scripts/github-actions/update-browser-versions.js') @@ -54,7 +54,7 @@ jobs: - name: Check need for update on existing branch if: ${{ steps.check-need-for-pr.outputs.needs_branch_update == 'true' }} id: check-need-for-branch-update - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { checkNeedForBranchUpdate } = require('./scripts/github-actions/update-browser-versions.js') @@ -71,7 +71,7 @@ jobs: ## Both - name: Update Browser Versions File if: ${{ steps.check-need-for-pr.outputs.needs_pr == 'true' || steps.check-need-for-branch-update.outputs.has_newer_update == 'true' }} - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { updateBrowserVersionsFile } = require('./scripts/github-actions/update-browser-versions.js') @@ -90,7 +90,7 @@ jobs: ## Update available and a branch/PR already exists - name: Update PR Title if: ${{ steps.check-need-for-pr.outputs.needs_branch_update == 'true' }} - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { updatePRTitle } = require('./scripts/github-actions/update-browser-versions.js') @@ -105,7 +105,7 @@ jobs: # Update available and a PR doesn't already exist - name: Create Pull Request if: ${{ steps.check-need-for-pr.outputs.needs_pr == 'true' }} - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { createPullRequest } = require('./scripts/github-actions/create-pull-request.js') diff --git a/.github/workflows/update_v8_snapshot_cache.yml b/.github/workflows/update_v8_snapshot_cache.yml index 022da25be973..60586ac4413a 100644 --- a/.github/workflows/update_v8_snapshot_cache.yml +++ b/.github/workflows/update_v8_snapshot_cache.yml @@ -122,7 +122,7 @@ jobs: # PR needs to be created - name: Create Pull Request if: ${{ steps.check-need-for-pr.outputs.needs_pr == 'true' }} - uses: actions/github-script@v4 + uses: actions/github-script@v6 with: script: | const { createPullRequest } = require('./scripts/github-actions/create-pull-request.js')