Skip to content

Commit 6ba2e71

Browse files
chore(deps): update actions/github-script action to v8 (#1198)
1 parent 2b862d7 commit 6ba2e71

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build-previews.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v5
1818

1919
- name: Get workflow artifacts
20-
uses: actions/github-script@v7
20+
uses: actions/github-script@v8
2121
id: get-workflow-artifacts
2222
with:
2323
script: |

.github/workflows/bump-manifest-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Bump version
3232
id: bump
33-
uses: actions/github-script@v7
33+
uses: actions/github-script@v8
3434
env:
3535
INPUT_VERSION: ${{ github.event.inputs.version }}
3636
with:

.github/workflows/delete-pr-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v5
1616

1717
- name: Delete artifacts
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
script: |
2121
const script = require('./.github/actions/delete-artifacts.cjs')

.github/workflows/nightly-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
run: pnpm build --channel=nightly --no-typecheck
109109

110110
- name: Get built version
111-
uses: actions/github-script@v7
111+
uses: actions/github-script@v8
112112
id: version
113113
with:
114114
script: |

.github/workflows/release-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: pnpm build --channel=preview
3535

3636
- name: Get built version
37-
uses: actions/github-script@v7
37+
uses: actions/github-script@v8
3838
id: version
3939
with:
4040
script: |

.github/workflows/release-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: ./.github/actions/setup
3939

4040
- name: Validate stable release
41-
uses: actions/github-script@v7
41+
uses: actions/github-script@v8
4242
env:
4343
INPUT_VERSION: ${{ github.event.inputs.version }}
4444
with:
@@ -50,7 +50,7 @@ jobs:
5050
run: pnpm build --channel=stable
5151

5252
- name: Get built version
53-
uses: actions/github-script@v7
53+
uses: actions/github-script@v8
5454
id: version
5555
with:
5656
script: |

.github/workflows/tests-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Find tests to run
2121
id: filter
22-
uses: actions/github-script@v7
22+
uses: actions/github-script@v8
2323
with:
2424
script: |
2525
const script = require('./.github/actions/tests-e2e-filter.cjs')

0 commit comments

Comments
 (0)