Skip to content

Commit 7baed10

Browse files
author
hasherwi
committed
DOCS-403: bump actions/github-script to v9
1 parent fb02408 commit 7baed10

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/dependabot-pr-jira.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Collect changed PR files
19-
uses: actions/github-script@v8
19+
uses: actions/github-script@v9
2020
with:
2121
script: |
2222
const fs = require('fs');

.github/workflows/readme-docs-constraints.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Collect changed PR files
3636
if: github.event_name == 'pull_request'
37-
uses: actions/github-script@v8
37+
uses: actions/github-script@v9
3838
with:
3939
script: |
4040
const fs = require('fs');
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: Add or update PR comment
8282
if: always() && github.event_name == 'pull_request'
83-
uses: actions/github-script@v8
83+
uses: actions/github-script@v9
8484
with:
8585
script: |
8686
const fs = require('fs');

docs/Contributing Guides/workflows-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ This page documents all current GitHub Actions workflows in this repository and
1919
| Automated Workflow Fixes | `.github/workflows/automated-workflow-fixes.yml` | Weekly schedule (`0 2 * * 1`) and manual dispatch | Runs consolidated weekly automation for link replacement and checking, markdown linting, spelling checks, CLI command path checks, report generation, branch commits, and Jira issue creation. Captures CLI validator fallback output when JSON is missing and uses bounded retries/timeouts for Jira API writes and attachment uploads to reduce long-running hangs. |
2020
| CLI Command Heading Case | `.github/workflows/cli-command-heading-case.yml` | Pull requests that change CLI reference docs, the checker script, or this workflow; manual dispatch | Validates CLI command heading casing in `docs/Integrations & Plugins/cli-reference/**/*.md`. |
2121
| CLI Command Path Check (Manual) | `.github/workflows/cli-command-path-check.yml` | Manual dispatch | Runs CLI command path validation, writes report artifacts under `.github/cli-command-paths/`, commits report updates, and creates Jira issues when failures are found. Jira API writes and attachment uploads use bounded retries and timeouts to reduce long-running hangs. |
22-
| Dependabot PR Jira Task | `.github/workflows/dependabot-pr-jira.yml` | Pull request target on open events for Dependabot-authored PRs | Creates one DOCS Jira task for each newly opened Dependabot PR using repo secrets available through `pull_request_target`. Searches Jira by PR-specific summary before create so workflow reruns do not create duplicates. |
22+
| Dependabot PR Jira Task | `.github/workflows/dependabot-pr-jira.yml` | Pull request target on open events for Dependabot-authored PRs | Creates one DOCS Jira task for each newly opened Dependabot PR using repo secrets available through `pull_request_target`. Searches Jira by PR-specific summary before create so workflow reruns do not create duplicates. Uses `actions/github-script@v9` for changed-file collection. |
2323
| Link Checker (Manual) | `.github/workflows/link-check.yml` | Manual dispatch | Rewrites `doc:` links to absolute docs URLs, runs Lychee discovery and final link checks, normalizes redirected docs links, commits outputs, and creates Jira issues with attached artifacts. Jira API writes and attachment uploads use bounded retries and timeouts to reduce long-running hangs. |
2424
| Markdown Linter (Manual) | `.github/workflows/md-linting.yml` | Manual dispatch | Runs `markdownlint-cli2 --fix` for docs Markdown, commits fixes and reports, and creates Jira issues when fixes or remaining violations are detected. Jira API writes and attachment uploads use bounded retries and timeouts to reduce long-running hangs. |
25-
| ReadMe Docs Constraints | `.github/workflows/readme-docs-constraints.yml` | Pull requests that change docs Markdown or constraint checker files; manual dispatch | Validates ReadMe compatibility constraints by blocking duplicate Markdown filenames and excessive docs nesting depth in added or renamed docs files. Maintains a sticky PR comment that updates on both failing and passing runs with the latest report state. |
25+
| ReadMe Docs Constraints | `.github/workflows/readme-docs-constraints.yml` | Pull requests that change docs Markdown or constraint checker files; manual dispatch | Validates ReadMe compatibility constraints by blocking duplicate Markdown filenames and excessive docs nesting depth in added or renamed docs files. Maintains a sticky PR comment that updates on both failing and passing runs with the latest report state. Uses `actions/github-script@v9` for file collection and PR comment updates. |
2626
| New Page Announcement Subtask | `.github/workflows/new-page-announcement-subtask.yml` | Pull request closed on `v1.0` when merged | Detects newly added Markdown pages under `docs/`, ignores renames, derives the Jira key from branch name, resolves parent task logic for subtasks, and creates a Jira subtask with a pre-drafted Slack announcement. Jira API reads and writes use bounded retries and timeouts to reduce long-running hangs. |
2727
| Spell Checker (Manual) | `.github/workflows/spell-check.yml` | Manual dispatch | Runs CSpell pre-fix and post-fix checks for Markdown, applies conservative autofix, commits generated outputs, and creates Jira issues with attached reports when findings exist. Jira API writes and attachment uploads use bounded retries and timeouts to reduce long-running hangs. |
2828

0 commit comments

Comments
 (0)