Skip to content

Commit 72ca6c9

Browse files
authored
Bump node to 24 (#3358)
1 parent 6c066ab commit 72ca6c9

File tree

14 files changed

+30
-31
lines changed

14 files changed

+30
-31
lines changed

.github/workflows/ci-components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request: {}
88

99
env:
10-
NODE_VERSION: "22.x"
10+
NODE_VERSION: "24.x"
1111

1212
concurrency:
1313
group: ci-components-${{ github.head_ref || github.ref }}

.github/workflows/ci-compress-images.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Compress Images
22
on:
33
workflow_dispatch:
44
schedule:
5-
- cron: '00 23 * * 0'
5+
- cron: "00 23 * * 0"
66

77
env:
8-
NODE_VERSION: '22.x'
8+
NODE_VERSION: "24.x"
99

1010
jobs:
1111
build:
@@ -23,8 +23,8 @@ jobs:
2323
if: steps.calibre.outputs.markdown != ''
2424
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
2525
with:
26-
title: 'Compressed Image Assets'
26+
title: "Compressed Image Assets"
2727
branch-suffix: timestamp
28-
commit-message: 'compressed image assets'
28+
commit-message: "compressed image assets"
2929
body: ${{ steps.calibre.outputs.markdown }}
30-
token: ${{ secrets.PAT_TOKEN }}
30+
token: ${{ secrets.PAT_TOKEN }}

.github/workflows/ci-website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request: {}
88

99
env:
10-
NODE_VERSION: '22.x'
10+
NODE_VERSION: "24.x"
1111

1212
concurrency:
1313
group: ci-website-${{ github.head_ref || github.ref }}
@@ -28,7 +28,7 @@ jobs:
2828
run: ./.github/scripts/filter_changed_files.sh "website" "packages/flight-icons/catalog.json" ".github/workflows/ci-website.yml"
2929

3030
lint:
31-
name: 'Lint'
31+
name: "Lint"
3232
runs-on: ubuntu-latest
3333
needs: [conditional-skip]
3434
if: needs.conditional-skip.outputs.trigger-ci == 'true'
@@ -51,7 +51,7 @@ jobs:
5151
working-directory: website
5252

5353
test:
54-
name: 'Test'
54+
name: "Test"
5555
runs-on: ubuntu-latest
5656
needs: [conditional-skip]
5757
if: needs.conditional-skip.outputs.trigger-ci == 'true'

.github/workflows/create-vercel-alias.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
2-
name: 'Create Vercel Alias'
1+
name: "Create Vercel Alias"
32

43
on:
54
workflow_dispatch:
65

76
env:
8-
NODE_VERSION: '22.x'
7+
NODE_VERSION: "24.x"
98

109
jobs:
1110
create-vercel-alias:
12-
name: 'Create Vercel Alias'
11+
name: "Create Vercel Alias"
1312
runs-on: ubuntu-latest
1413
steps:
1514
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/open-pull-request-for-icon-update.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
env:
7-
NODE_VERSION: '22.x'
7+
NODE_VERSION: "24.x"
88

99
jobs:
1010
sync_iconset:
@@ -37,10 +37,10 @@ jobs:
3737
- name: Open a PR
3838
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
3939
with:
40-
branch: 'hds-icon-export'
41-
branch-suffix: 'short-commit-hash'
42-
commit-message: 'sync & build of flight icons'
43-
title: 'Updated export of icons from Figma'
40+
branch: "hds-icon-export"
41+
branch-suffix: "short-commit-hash"
42+
commit-message: "sync & build of flight icons"
43+
title: "Updated export of icons from Figma"
4444
draft: true
4545
body: |
4646
### :pushpin: Summary
@@ -81,4 +81,4 @@ jobs:
8181
8282
- [ ] A changelog entry was added via [Changesets](https://github.com/changesets/changesets) if needed ([instructions here](https://github.com/hashicorp/design-system/blob/main/packages/flight-icons/CONTRIBUTING.md#updating-the-icons-in-flight-icons) / [expected format here](https://hashicorp.atlassian.net/wiki/spaces/HDS/pages/3243114706/Changelog+authoring+best+practices#New-icons))
8383
- [ ] Percy was checked for any visual regression
84-
token: ${{ secrets.PAT_TOKEN }}
84+
token: ${{ secrets.PAT_TOKEN }}

.github/workflows/release-candidate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- labeled
1414

1515
env:
16-
NODE_VERSION: '22.x'
16+
NODE_VERSION: "24.x"
1717

1818
jobs:
1919
release-candidate:
@@ -78,7 +78,7 @@ jobs:
7878
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
7979
if: success() && steps.changesets.outputs.published == 'true'
8080
with:
81-
header: 'rc-release'
81+
header: "rc-release"
8282
message: |
8383
### :package: RC Packages Published
8484
@@ -88,4 +88,4 @@ jobs:
8888
8989
${{ fromJSON(steps.packagesData.outputs.packageList) }}
9090
91-
</details>
91+
</details>

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77

88
env:
9-
NODE_VERSION: '22.x'
9+
NODE_VERSION: "24.x"
1010

1111
jobs:
1212
release:
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2020
fetch-depth: 0
21-
21+
2222
- name: Install PNPM
2323
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
2424
with:
@@ -42,4 +42,4 @@ jobs:
4242
# Token setup in hashibot-hds' account
4343
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
4444
# Token setup in hashibot-hds' account
45-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
45+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ node_modules/
1414
.pnp.*
1515
*.vscode/settings.json
1616
/packages/codemods/coverage
17-
.tool-versions

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22
1+
v24

.tool-versions

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
nodejs 24.11.0
2+
pnpm 10.11.0

0 commit comments

Comments
 (0)