From d4a4c40a3f7286972c97bef94116539fceae6751 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 21:03:12 +0200 Subject: [PATCH] Bump actions/github-script from 8 to 9 (#1136) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/check_ota_pr.yml | 2 +- .github/workflows/concat_cacerts.yml | 2 +- .github/workflows/overwrite_cache.yml | 2 +- .github/workflows/report_ota_pr.yml | 2 +- .github/workflows/reprocess_all_images.yml | 4 ++-- .github/workflows/run_autodl.yml | 4 ++-- .github/workflows/run_autodl_daily.yml | 2 +- .github/workflows/update_manifests.yml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/check_ota_pr.yml b/.github/workflows/check_ota_pr.yml index a68c1ca..1fbed40 100644 --- a/.github/workflows/check_ota_pr.yml +++ b/.github/workflows/check_ota_pr.yml @@ -29,7 +29,7 @@ jobs: run: pnpm run build - name: Check OTA PR - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {checkOtaPR} = await import("${{ github.workspace }}/dist/ghw_check_ota_pr.js") diff --git a/.github/workflows/concat_cacerts.yml b/.github/workflows/concat_cacerts.yml index e02c6e6..7e6fbaa 100644 --- a/.github/workflows/concat_cacerts.yml +++ b/.github/workflows/concat_cacerts.yml @@ -29,7 +29,7 @@ jobs: run: pnpm run build - name: Concat CACerts - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {concatCaCerts} = await import("${{ github.workspace }}/dist/ghw_concat_cacerts.js") diff --git a/.github/workflows/overwrite_cache.yml b/.github/workflows/overwrite_cache.yml index dd70656..5e3e05c 100644 --- a/.github/workflows/overwrite_cache.yml +++ b/.github/workflows/overwrite_cache.yml @@ -32,7 +32,7 @@ jobs: run: pnpm run build - name: Overwrite cache - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {overwriteCache} = await import("${{ github.workspace }}/dist/gwh_overwrite_cache.js") diff --git a/.github/workflows/report_ota_pr.yml b/.github/workflows/report_ota_pr.yml index f054c00..ac4c7b3 100644 --- a/.github/workflows/report_ota_pr.yml +++ b/.github/workflows/report_ota_pr.yml @@ -34,7 +34,7 @@ jobs: run: pnpm run build - name: Check OTA PR - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {reportOtaPR} = await import("${{ github.workspace }}/dist/ghw_report_ota_pr.js") diff --git a/.github/workflows/reprocess_all_images.yml b/.github/workflows/reprocess_all_images.yml index 92a9667..aecc729 100644 --- a/.github/workflows/reprocess_all_images.yml +++ b/.github/workflows/reprocess_all_images.yml @@ -47,7 +47,7 @@ jobs: git checkout -b $branch_name - name: Reprocess - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: NODE_EXTRA_CA_CERTS: cacerts.pem with: @@ -63,7 +63,7 @@ jobs: git push -u origin HEAD - name: Create pull request - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {createPRToDefault} = await import("${{ github.workspace }}/dist/ghw_create_pr_to_default.js") diff --git a/.github/workflows/run_autodl.yml b/.github/workflows/run_autodl.yml index a16196d..1f1397b 100644 --- a/.github/workflows/run_autodl.yml +++ b/.github/workflows/run_autodl.yml @@ -44,7 +44,7 @@ jobs: run: pnpm run build - name: Run Autodl - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: NODE_EXTRA_CA_CERTS: cacerts.pem PREV: ${{ inputs.prev == 'true' && '1' || '' }} @@ -60,7 +60,7 @@ jobs: identifyStacks(github, core, context) - name: Create Autodl release - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {createAutodlRelease} = await import("${{ github.workspace }}/dist/ghw_create_autodl_release.js") diff --git a/.github/workflows/run_autodl_daily.yml b/.github/workflows/run_autodl_daily.yml index 0b9e09d..f5608fe 100644 --- a/.github/workflows/run_autodl_daily.yml +++ b/.github/workflows/run_autodl_daily.yml @@ -27,7 +27,7 @@ jobs: run: pnpm run build - name: Run Autodl - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: NODE_EXTRA_CA_CERTS: cacerts.pem with: diff --git a/.github/workflows/update_manifests.yml b/.github/workflows/update_manifests.yml index fd9613f..45ec4f5 100644 --- a/.github/workflows/update_manifests.yml +++ b/.github/workflows/update_manifests.yml @@ -38,7 +38,7 @@ jobs: git pull - name: Update manifests - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const {updateManifests} = await import("${{ github.workspace }}/dist/ghw_update_manifests.js")