Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
done

echo "files=${files}" >> $GITHUB_ENV
- uses: rojopolis/spellcheck-github-actions@0.45.0
- uses: rojopolis/spellcheck-github-actions@0.55.0
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

rojopolis/spellcheck-github-actions releases v0.45.0 to v0.55.0 breaking changes

💡 Result:

Do you want me to fetch the repository releases/changelog from GitHub and list any breaking changes between v0.45.0 and v0.55.0?


🏁 Script executed:

#!/bin/bash
# Fetch release information from GitHub API
curl -s 'https://api.github.com/repos/rojopolis/spellcheck-github-actions/releases' | \
  jq -r '.[] | select(.tag_name >= "v0.45.0" and .tag_name <= "v0.55.0") | 
    "\(.tag_name): \(.published_at)\n\(.body)\n---\n"' | head -200

Repository: PipedreamHQ/pipedream

Length of output: 47


🌐 Web query:

site:github.com/rojopolis/spellcheck-github-actions/releases v0.55.0

💡 Result:

I couldn't find a release tagged v0.55.0 for rojopolis/spellcheck-github-actions. The repository and GitHub Marketplace references show versions up through v0.54.0 (no v0.55.0 release/tag found). [1][2]

Sources:

  • Repository (tags/releases listing). [1]
  • GitHub Marketplace entry mentioning v0.54.0. [2]

🏁 Script executed:

#!/bin/bash
# Try alternative API format with simpler output
curl -s 'https://api.github.com/repos/rojopolis/spellcheck-github-actions/releases/tags/v0.55.0' | jq '.'

Repository: PipedreamHQ/pipedream

Length of output: 211


🏁 Script executed:

#!/bin/bash
# Check if repository has a CHANGELOG file
fd -t f 'CHANGELOG|RELEASE|HISTORY' . --type f 2>/dev/null | head -20

Repository: PipedreamHQ/pipedream

Length of output: 130


🏁 Script executed:

#!/bin/bash
# Check the current version of the action in the workflow file
cat -n .github/workflows/pull-request-checks.yaml | grep -A2 -B2 "spellcheck-github-actions"

Repository: PipedreamHQ/pipedream

Length of output: 250


🌐 Web query:

rojopolis/spellcheck-github-actions latest version release tags

💡 Result:

The latest release tag is v0.51.0 (release "0.51.0" — 20 Jun, listed as Latest). [1]

Sources:
[1] GitHub Releases — rojopolis/spellcheck-github-actions (Releases page).


Version 0.55.0 does not exist for rojopolis/spellcheck-github-actions.

The action reference points to @0.55.0, which is not available in the repository. The latest release is v0.51.0 (Jun 20). This will cause the workflow to fail at runtime when GitHub Actions attempts to resolve this version. Update to a valid version tag, such as @0.51.0 or another existing release.

🤖 Prompt for AI Agents
.github/workflows/pull-request-checks.yaml lines 38-38: the workflow references
rojopolis/spellcheck-github-actions@0.55.0 which doesn't exist and will fail at
runtime; update the action reference to a valid release tag (for example
@0.51.0) or another existing version, and commit the updated version string in
the workflow file so GitHub Actions can resolve the action.

name: Spellcheck
if: ${{ env.files }}
with:
Expand Down
Loading