Skip to content

Commit d0ea399

Browse files
authored
Merge pull request #8106 from ecamp/renovate/actions-github-script-8.x
chore(deps): update actions/github-script action to v8
2 parents a1507b3 + 4643c0a commit d0ea399

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ jobs:
511511
if: always()
512512
steps:
513513
- name: Fail if not all jobs were successful
514-
uses: actions/github-script@v7
514+
uses: actions/github-script@v8
515515
with:
516516
script: |
517517
const needs = `${{ toJSON(needs) }}`;

.github/workflows/deploy-ecamp3-logging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: ${{ github.event.inputs.environment }}
1616
steps:
1717
- name: Validate environment
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
script: |
2121
if (!"${{ github.event.inputs.environment }}".startsWith("ecamp3-logging")) {

.github/workflows/deploy-ops-dashboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
environment: ${{ github.event.inputs.environment }}
1717
steps:
1818
- name: Validate environment
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
with:
2121
script: |
2222
if (!"${{ github.event.inputs.environment }}".startsWith("ops-dashboard")) {

.github/workflows/e2e-tests.yml

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

2929
steps:
3030
- name: Create large array
31-
uses: actions/github-script@v7
31+
uses: actions/github-script@v8
3232
id: array
3333
with:
3434
script: |

.github/workflows/fast-forward.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: steps.has_permission.outputs.require-result != 'true'
3030
run: exit 1
3131

32-
- uses: actions/github-script@v7
32+
- uses: actions/github-script@v8
3333
id: current_pr
3434
with:
3535
github-token: ${{ secrets.FAST_FORWARD_TOKEN }}

.github/workflows/reusable-build-and-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
#github forces lower case for the image name
3434
- name: Get lowercase repo owner name
35-
uses: actions/github-script@v7
35+
uses: actions/github-script@v8
3636
id: repo-owner
3737
with:
3838
result-encoding: string
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
echo "latest-tag=latest" | tr -d "\n" >> $GITHUB_OUTPUT
5757
58-
- uses: actions/github-script@v7
58+
- uses: actions/github-script@v8
5959
id: get-tag
6060
if: startsWith(github.ref, 'refs/tags/')
6161
with:
@@ -192,15 +192,15 @@ jobs:
192192
193193
- name: Add latest commit to image tag if image does not exist
194194
id: add-latest-commit-to-tags-if-image-does-not-exist
195-
uses: actions/github-script@v7
195+
uses: actions/github-script@v8
196196
with:
197197
script: |
198198
if (!${{ steps.check-image.outputs.result }}) {
199199
return [...JSON.parse('${{ env.tags }}'), '${{ steps.get-latest-commit.outputs.result }}']
200200
}
201201
return JSON.parse('${{ env.tags }}')
202202
203-
- uses: actions/github-script@v7
203+
- uses: actions/github-script@v8
204204
id: expand-tags
205205
with:
206206
script: |
@@ -209,7 +209,7 @@ jobs:
209209
- name: populate build args from secrets/vars
210210
if: steps.check-image.outputs.result == 'false'
211211
id: populate-build-args
212-
uses: actions/github-script@v7
212+
uses: actions/github-script@v8
213213
with:
214214
script: |
215215
const buildArgValues = {

0 commit comments

Comments
 (0)