4545 --health-retries 5
4646
4747 steps :
48- - uses : actions/checkout@v4
48+ - uses : actions/checkout@v7
4949
5050 - name : Setup Python
5151 uses : actions/setup-python@v5
@@ -258,7 +258,7 @@ jobs:
258258
259259 - name : Upload test artifacts
260260 if : always()
261- uses : actions/upload-artifact@v4
261+ uses : actions/upload-artifact@v7
262262 with :
263263 name : migration-test-${{ github.run_number }}
264264 path : |
@@ -273,7 +273,7 @@ jobs:
273273
274274 - name : Close issue on success
275275 if : success()
276- uses : actions/github-script@v7
276+ uses : actions/github-script@v9
277277 with :
278278 script : |
279279 const { data: existing } = await github.rest.issues.listForRepo({
@@ -306,7 +306,7 @@ jobs:
306306
307307 - name : Create or update issue on failure
308308 if : failure()
309- uses : actions/github-script@v7
309+ uses : actions/github-script@v9
310310 with :
311311 script : |
312312 const fs = require('fs');
@@ -369,7 +369,7 @@ jobs:
369369 OFFICIAL_COMPOSE_URL : https://raw.githubusercontent.com/langflow-ai/langflow/main/docker_example/docker-compose.yml
370370
371371 steps :
372- - uses : actions/checkout@v4
372+ - uses : actions/checkout@v7
373373
374374 - name : Verify OPENAI_API_KEY secret is configured
375375 env :
@@ -677,7 +677,7 @@ jobs:
677677
678678 - name : Upload artifacts
679679 if : always()
680- uses : actions/upload-artifact@v4
680+ uses : actions/upload-artifact@v7
681681 with :
682682 name : migration-compose-${{ github.run_number }}
683683 path : |
@@ -690,7 +690,7 @@ jobs:
690690
691691 - name : Close issue on success
692692 if : success()
693- uses : actions/github-script@v7
693+ uses : actions/github-script@v9
694694 with :
695695 script : |
696696 const { data: existing } = await github.rest.issues.listForRepo({
@@ -723,7 +723,7 @@ jobs:
723723
724724 - name : Create or update issue on failure
725725 if : failure()
726- uses : actions/github-script@v7
726+ uses : actions/github-script@v9
727727 with :
728728 script : |
729729 const { data: existing } = await github.rest.issues.listForRepo({
0 commit comments