Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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/automate_renovate_changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Configure Git
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Find changed workspaces
Expand All @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
workspace: ${{ fromJSON(needs.find-changed-workspaces.outputs.workspaces) }}
node-version: [22.x]
node-version: [24.x]
Comment thread
hopehadfield marked this conversation as resolved.
Outdated
fail-fast: false
defaults:
run:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.x
node-version: 24.x
Comment thread
hopehadfield marked this conversation as resolved.
Outdated
- name: Install root dependencies
run: yarn install --immutable
- name: Verify lockfile duplicates
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deprecate-archived-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 24.x
Comment thread
hopehadfield marked this conversation as resolved.
Outdated
registry-url: 'https://registry.npmjs.org'

- name: Deprecate packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/detect-new-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24

- name: Install dependencies
run: yarn install --immutable
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24

- name: Install dependencies
run: yarn install --immutable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Fetch previous commit for check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Get yarn cache directory path
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Install root dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_workspace_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Get yarn cache directory path
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: Install root dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-codeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
node-version: 24

- name: Validate CODEOWNERS entries against team membership
id: validate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
fetch-depth: 1

# Beginning of yarn setup
- name: use node.js 22.x
- name: use node.js 24.x
Comment thread
hopehadfield marked this conversation as resolved.
Outdated
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.x
node-version: 24.x
Comment thread
hopehadfield marked this conversation as resolved.
Outdated
registry-url: https://registry.npmjs.org/ # Needed for auth
- name: cache all node_modules
id: cache-modules
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"repository": "git@github.com:redhat-developer/rhdh-plugins.git",
"engines": {
"node": "22"
"node": "24"
},
"scripts": {
"create-workspace": "rhdh-repo-tools workspace create",
Expand Down
Loading