From fa68e1f244443de3fb545eb3f86000f79c64e79a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 20:09:51 +0200 Subject: [PATCH] Bump actions/github-script from 7 to 8 (#859) --- .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 df5d22b..902bb98 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@v7 + uses: actions/github-script@v8 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 ab8a7c9..b690629 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@v7 + uses: actions/github-script@v8 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 d262d6f..d1875b1 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@v7 + uses: actions/github-script@v8 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 7c746af..87f5dc0 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@v7 + uses: actions/github-script@v8 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 e67ac0c..081ff34 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@v7 + uses: actions/github-script@v8 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@v7 + uses: actions/github-script@v8 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 d0c4746..72d9af2 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@v7 + uses: actions/github-script@v8 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@v7 + uses: actions/github-script@v8 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 147ef15..fce3fa8 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@v7 + uses: actions/github-script@v8 env: NODE_EXTRA_CA_CERTS: cacerts.pem with: diff --git a/.github/workflows/update_manifests.yml b/.github/workflows/update_manifests.yml index ba71f0a..84c86c8 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@v7 + uses: actions/github-script@v8 with: script: | const {updateManifests} = await import("${{ github.workspace }}/dist/ghw_update_manifests.js")