Skip to content

Commit

Permalink
chore(deps): update actions/github-script action to v6 馃専 (#25280)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
  • Loading branch information
renovate[bot] and emilyrohrbough committed Mar 23, 2023
1 parent bada2b6 commit 415b934
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/update-browser-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_v8_snapshot_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

4 comments on commit 415b934

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 415b934 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.8.2/linux-arm64/develop-415b93465cbec28ff6504a54d5a2502e3d8eb8f4/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 415b934 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.8.2/darwin-arm64/develop-415b93465cbec28ff6504a54d5a2502e3d8eb8f4/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 415b934 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.8.2/darwin-x64/develop-415b93465cbec28ff6504a54d5a2502e3d8eb8f4/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 415b934 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.8.2/win32-x64/develop-415b93465cbec28ff6504a54d5a2502e3d8eb8f4/cypress.tgz

Please sign in to comment.