Skip to content

Commit d265fdb

Browse files
chore(deps): bump actions/github-script from 7.0.1 to 8.0.0
Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@60a0d83...ed59741) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5b03986 commit d265fdb

12 files changed

+19
-19
lines changed

.github/workflows/accessibility_scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
NODE_OPTIONS: --max_old_space_size=4096
2727
- name: Get changed/new pages to run accessibility tests on
28-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
28+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2929
id: pages-to-a11y-test
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -38,7 +38,7 @@ jobs:
3838
python -m http.server 3000 -d ${{ env.BUILD_DIR }} &
3939
sleep 5
4040
- name: Run accessibility tests on changed/new MDX pages
41-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
41+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4242
id: axeResults
4343
with:
4444
result-encoding: string

.github/workflows/add_deleted_assets_label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout repository to get the workflow scripts
1818
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1919
- name: Download artifact
20-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
20+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2121
env:
2222
WORKSPACE: ${{ github.workspace }}
2323
with:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Unzip artifact
3131
run: unzip '${{ env.ARTIFACT_NAME }}.zip'
3232
- name: Add redirects-needed label to PR
33-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
33+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
script: |

.github/workflows/add_redirects_label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout repository to get the workflow scripts
1818
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1919
- name: Download artifact
20-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
20+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2121
env:
2222
WORKSPACE: ${{ github.workspace }}
2323
with:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Unzip artifact
3131
run: unzip '${{ env.ARTIFACT_NAME }}.zip'
3232
- name: Add redirects-needed label to PR
33-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
33+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
script: |

.github/workflows/check_bundle_size.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
NODE_OPTIONS: --max_old_space_size=4096
2929
run: ANALYZE=true yarn next-build
3030
- name: Check base bundle size of select pages
31-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
31+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3232
id: base-bundle-sizes
3333
with:
3434
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -54,15 +54,15 @@ jobs:
5454
NODE_OPTIONS: --max_old_space_size=4096
5555
run: ANALYZE=true yarn next-build
5656
- name: Check head bundle size of select pages
57-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
57+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5858
id: head-bundle-sizes
5959
with:
6060
github-token: ${{ secrets.GITHUB_TOKEN }}
6161
script: |
6262
const { checkBundleSize } = require('./.github/workflows/scripts/check_bundle_size.js');
6363
return checkBundleSize();
6464
- name: Compare bundle page bundle sizes
65-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
65+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
6666
id: compare-bundles
6767
with:
6868
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check_for_broken_links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: yarn
2323
- name: Run Link Checker
2424
id: checkLinks
25-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
25+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2626
with:
2727
result-encoding: string
2828
script: |

.github/workflows/check_for_console_errors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
sleep 5
3232
- name: Run Console Errors
3333
id: consoleErrors
34-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
34+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3535
with:
3636
result-encoding: string
3737
script: |

.github/workflows/check_for_deleted_assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout repository to get the workflow scripts
1414
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1515
- name: Get count of deleted files
16-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
16+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1717
id: set-deleted-files-count
1818
with:
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check_for_new_files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1414
- name: Get count of added files
15-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
15+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1616
id: set-added-files-count
1717
with:
1818
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -27,7 +27,7 @@ jobs:
2727
run: yarn add [email protected] -W # help verify CODEOWNERS
2828
- name: Check file against CODEOWNERS
2929
if: ${{ steps.set-added-files-count.outputs.result > 0 }}
30-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
30+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3131
env:
3232
CURRENT_BRANCH: ${{ github.head_ref }}
3333
CURRENT_REPO: ${{ github.repository }}

.github/workflows/check_for_new_fragments.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Checkout repository
1111
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1212
- name: Check if there are new fragments
13-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
13+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1414
id: new-fragments-boolean
1515
with:
1616
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -20,7 +20,7 @@ jobs:
2020
return getAddedFragments({github, context, core});
2121
- name: Add Comment to PR if new fragments have been added
2222
if: ${{ steps.new-fragments-boolean.outputs.result > 0 }}
23-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
23+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2424
env:
2525
CURRENT_BRANCH: ${{ github.head_ref }}
2626
CURRENT_REPO: ${{ github.repository }}

.github/workflows/check_for_redirects.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout repository to get the workflow scripts
1414
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1515
- name: Get count of deleted files
16-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
16+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1717
id: set-deleted-files-count
1818
with:
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)