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;