From b7e145994e9f078e9aef43b0b21e8090cc76448a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 19:13:26 +0000 Subject: [PATCH] ci(deps): bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/maintenance.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/support.yml | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d6b42b016..b3ca45deb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,7 +37,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Notify deployment - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | github.rest.issues.createComment({ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 215211996..9ed5e3e6a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -44,7 +44,7 @@ jobs: - name: Comment on PR if: github.event_name == 'pull_request' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | github.rest.issues.createComment({ diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index 595c2c63c..018a74668 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -82,7 +82,7 @@ jobs: retention-days: 30 - name: Create maintenance issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const fs = require('fs'); diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 110906ca1..09f867568 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: - name: Create Release Notes if: success() - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { data: releases } = await github.rest.repos.listReleases({ diff --git a/.github/workflows/support.yml b/.github/workflows/support.yml index 0af6a8ce2..c53395766 100644 --- a/.github/workflows/support.yml +++ b/.github/workflows/support.yml @@ -24,7 +24,7 @@ jobs: - name: Welcome new contributors if: github.event.action == 'opened' && github.event.issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { owner, repo } = context.repo; @@ -64,7 +64,7 @@ jobs: - name: Auto-label issues if: github.event.action == 'opened' && github.event.issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { owner, repo } = context.repo; @@ -112,7 +112,7 @@ jobs: - name: Respond to common questions if: github.event.action == 'opened' && github.event.issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { owner, repo } = context.repo; @@ -145,7 +145,7 @@ jobs: - name: Notify support team if: github.event.action == 'opened' && github.event.issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { owner, repo } = context.repo;