Update CI actions and remove unused imports#2402
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR (Fixes OPS-4665) updates GitHub Actions workflow dependencies and cleans up unused imports/variables across scripts, blocks, and tests to reduce lint noise and keep the codebase tidy.
Changes:
- Bump CI workflows to use
actions/setup-node@v7and update the pinnedanthropics/claude-code-actionrevision. - Normalize formatting in internal tooling scripts and remove unused imports across multiple packages.
- Remove unused test helpers/imports and address an unused semaphore acquire value in OpenOps Tables concurrency code.
Reviewed changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tools/scripts/utils/package-pre-publish-checks.ts | Formatting/consistency updates and minor cleanup in pre-publish version checks. |
| tools/scripts/utils/files.ts | Remove unused FS imports and reformat JSON helper utilities/types. |
| packages/server/shared/src/lib/package-manager.ts | Remove unused imports from package manager utilities. |
| packages/openops/test/openops-tables/rows.test.ts | Remove unused retry config helper constant from tests. |
| packages/openops/src/lib/openops-tables/rows.ts | Rename unused semaphore acquire value to _value to avoid unused-local issues. |
| packages/blocks/text-helper/src/lib/actions/replace.ts | Remove unused Validators import. |
| packages/blocks/text-helper/src/lib/actions/find.ts | Remove unused Validators import. |
| packages/blocks/microsoft-teams/src/lib/common/team-id.ts | Remove unused Microsoft Graph type imports. |
| packages/blocks/jira-cloud/src/lib/actions/create-issue.ts | Remove unused isEmpty named import from validator. |
| packages/blocks/aws/test/cli/aws-cli.test.ts | Remove unused awsCliAction import from test. |
| .github/workflows/pr-reviewer.yml | Update pinned anthropics/claude-code-action commit SHA. |
| .github/workflows/ci.yml | Update actions/setup-node major version used in CI jobs. |
| .github/workflows/chromatic.yml | Update actions/setup-node major version for Chromatic workflow. |
|
MarceloRGonc
enabled auto-merge (squash)
July 22, 2026 16:21
ravikiranvm
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Fixes OPS-4665