Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fields: '{"customfield_10009": "DOCS-162", "labels": ["Quality"]}'

- name: Update title of GitHub issue
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

The version v9.0.0 does not exist for the actions/github-script action. The latest stable major version is currently v7. Referencing a non-existent version will cause the workflow to fail. Update the actions/github-script version to the latest stable release (v7) and use the corresponding commit SHA.

env:
JIRA_ISSUE_NUMBER: ${{ steps.create_jira_issue.outputs.issue }}
GITHUB_ORIGINAL_TITLE: ${{ github.event.issue.title }}
Expand All @@ -49,7 +49,7 @@ jobs:
})

- name: Add comment to GitHub issue
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

The version v9.0.0 does not exist for the actions/github-script action. The latest stable major version is currently v7. Referencing a non-existent version will cause the workflow to fail. Update the actions/github-script version to the latest stable release (v7) and use the corresponding commit SHA.

with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
Loading