Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps actions/setup-node from 4 to 5.

Release notes

Sourced from actions/setup-node's releases.

v5.0.0

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless. To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-node@v4...v5.0.0

v4.4.0

What's Changed

Bug fixes:

Enhancement:

Dependency update:

New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependabot dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Oct 1, 2025
@vercel
Copy link
Contributor

vercel bot commented Oct 1, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

2 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
fides-plus-nightly Ignored Ignored Preview Oct 15, 2025 11:13pm
fides-privacy-center Ignored Ignored Oct 15, 2025 11:13pm

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

Greptile Overview

Summary

This PR upgrades the `actions/setup-node` GitHub Action from version 4 to version 5 across all CI/CD workflow files in the Fides repository. This is a routine dependency maintenance update generated by Dependabot to keep the CI infrastructure current.

The upgrade brings several significant improvements to the build pipeline:

Automatic Package Manager Caching: The most notable enhancement is automatic caching when a valid packageManager field is present in package.json. This feature will automatically detect and cache npm dependencies, which should improve build performance across the Fides frontend applications (admin-ui, privacy-center, and various test suites).

Security Updates: The v5 release includes critical security fixes, particularly for the form-data dependency, along with updates to other dependencies like uuid, undici, and @actions/github.

Runtime Upgrade: The action itself now runs on Node.js 24, though this doesn't affect the Node.js version used in the actual builds (which remains 20.x as specified in the workflows).

Integration with Fides Architecture: This change fits seamlessly into the Fides codebase structure, which includes multiple frontend applications in the /clients directory. Each application has its own package.json file, and the automatic caching feature should provide performance benefits across all these builds. The workflows affected include Cypress end-to-end tests, admin UI tests, privacy center tests, frontend linting/checks, and package publishing - all critical parts of the Fides development and release process.

The upgrade maintains full backward compatibility with existing workflow configurations while adding these performance and security enhancements.

Important Files Changed

Changed Files
Filename Score Overview
.github/workflows/cypress_admin-ui.yml 5/5 Updates actions/setup-node from v4 to v5 in admin UI Cypress test workflow
.github/workflows/cypress_e2e.yml 4/5 Updates actions/setup-node from v4 to v5 in end-to-end Cypress test workflow
.github/workflows/cypress_privacy-center.yml 5/5 Updates actions/setup-node from v4 to v5 in privacy center Cypress test workflow
.github/workflows/frontend_checks.yml 5/5 Updates actions/setup-node from v4 to v5 in frontend linting and checks workflow
.github/workflows/publish_package.yaml 5/5 Updates actions/setup-node from v4 to v5 in package publishing workflow

Confidence score: 5/5

  • This PR is extremely safe to merge with minimal risk as it's a standard dependency update that maintains backward compatibility
  • Score reflects the routine nature of GitHub Actions dependency updates and the well-documented breaking changes that are actually beneficial
  • No files require special attention as all changes are identical version number updates across workflow files

Sequence Diagram

sequenceDiagram
    participant User
    participant Dependabot
    participant "GitHub Actions" as GHA
    participant "setup-node v5" as Node
    participant "Test Environment" as Tests
    participant PyPI
    participant TestPyPI

    User->>Dependabot: "Trigger dependency update"
    Dependabot->>GHA: "Create PR to bump actions/setup-node from v4 to v5"
    
    Note over GHA: "PR triggers workflow checks"
    
    GHA->>Node: "Setup Node.js 20.x environment"
    Node->>GHA: "Node environment ready with automatic package manager detection"
    
    par Frontend Checks
        GHA->>Tests: "Run admin-ui Cypress tests"
        Tests->>GHA: "Test results"
    and
        GHA->>Tests: "Run privacy-center Cypress tests"  
        Tests->>GHA: "Test results"
    and
        GHA->>Tests: "Run E2E Cypress tests"
        Tests->>GHA: "Test results"
    and
        GHA->>Tests: "Run frontend code checks (lint, format, unit tests)"
        Tests->>GHA: "Check results"
    end
    
    alt If all tests pass
        GHA->>User: "All checks passed - PR ready for merge"
        User->>GHA: "Merge PR"
        GHA->>Node: "Build and package with Node.js 20"
        Node->>GHA: "Frontend assets built"
        GHA->>TestPyPI: "Upload development package"
        TestPyPI->>GHA: "Package uploaded successfully"
    else If tests fail
        GHA->>User: "Tests failed - review required"
    end
Loading

Context used:

Rule - Review the entire PR not just the last commits (link)

5 files reviewed, no comments

Edit Code Review Agent Settings | Greptile

@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-node-5 branch 3 times, most recently from fded2b4 to 206e725 Compare October 9, 2025 22:39
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-node-5 branch from 206e725 to 3c1a87d Compare October 14, 2025 15:15
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4...v5)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-node-5 branch from 3c1a87d to b496d09 Compare October 15, 2025 23:13
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 9, 2026

Superseded by #7201.

@dependabot dependabot bot closed this Jan 9, 2026
@dependabot dependabot bot deleted the dependabot/github_actions/actions/setup-node-5 branch January 9, 2026 14:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependabot dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant