Skip to content

Commit c9b6996

Browse files
authored
Merge pull request #522 from Lombiq/issue/OSOE-1010
OSOE-1010: Updating default Node version to 24.10.0, removing PNPM workaroun
2 parents f5dd77d + 4a8f0ab commit c9b6996

File tree

12 files changed

+16
-29
lines changed

12 files changed

+16
-29
lines changed
Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
name: Enable corepack
22
description: >
3-
Enables Node corepack so any package manager can be used seamlessly. This is instead of a direct PNPM install. This
4-
step won't be necessary once corepack is out of the experimental state and be enabled by default, see
5-
https://github.com/nodejs/node/issues/50963.
6-
3+
Enables Node corepack so any package manager can be used seamlessly. This is instead of a direct PNPM install.
74
runs:
85
using: composite
96
steps:
107
- name: Enable corepack
118
shell: pwsh
129
run: |
1310
corepack enable
14-
15-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
16-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
17-
corepack prepare pnpm@8.15.9+sha1.aa4bc353b5f59fe1f1df5d802ce049ddf7f3c60e --activate

.github/actions/publish-nuget/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ inputs:
1010
required: false
1111
default: minimal
1212
description: The logging verbosity type used by the `dotnet` command.
13-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
14-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
1513
enable-corepack:
1614
type: string
1715
default: 'false'

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
default: false
1313
node-version:
1414
description: 'Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0.'
15-
default: 22.16.0
15+
default: 24.10.0
1616
node-version-file:
1717
description: >
1818
File containing the version Spec of the version to use. Examples: package.json, .nvmrc, .node-version,

.github/workflows/build-and-test-dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ on:
5959
description: Version of the .NET SDK to set up.
6060
node-version:
6161
type: string
62-
default: 22.16.0
62+
default: 24.10.0
6363
description: >
6464
The Node.js version. Can be a specific version number or other notations, see the documentation of
6565
https://github.com/actions/setup-node.

.github/workflows/build-and-test-orchard-core.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ on:
5959
description: Version of the .NET SDK to set up.
6060
node-version:
6161
type: string
62-
default: 22.16.0
62+
default: 24.10.0
6363
description: >
6464
The Node.js version. Can be a specific version number or other notations, see the documentation of
6565
https://github.com/actions/setup-node.
@@ -70,8 +70,6 @@ on:
7070
Set to true to enable automatic caching based on the package manager field in package.json. By default,
7171
caching is disabled for this workflow (which is different from the underlying action's default behavior), to
7272
improve stability and backwards compatibility.
73-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
74-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
7573
enable-corepack:
7674
type: string
7775
default: 'false'

.github/workflows/deploy-orchard1-to-azure-app-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ on:
6767
description: Version of the .NET SDK to set up.
6868
node-version:
6969
type: string
70-
default: 22.16.0
70+
default: 24.10.0
7171
description: >
7272
The Node.js version. Can be a specific version number or other notations, see the documentation of
7373
https://github.com/actions/setup-node.

.github/workflows/deploy-to-azure-app-service.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ on:
5050
description: Version of the .NET SDK to set up.
5151
node-version:
5252
type: string
53-
default: 22.16.0
53+
default: 24.10.0
5454
description: >
5555
The Node.js version. Can be a specific version number or other notations, see the documentation of
5656
https://github.com/actions/setup-node.
@@ -61,8 +61,6 @@ on:
6161
Set to true to enable automatic caching based on the package manager field in package.json. By default,
6262
caching is disabled for this workflow (which is different from the underlying action's default behavior), to
6363
improve stability and backwards compatibility.
64-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
65-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
6664
enable-corepack:
6765
type: string
6866
default: 'false'

.github/workflows/msbuild-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ on:
7474
description: Version of the .NET SDK to set up.
7575
node-version:
7676
type: string
77-
default: 22.16.0
77+
default: 24.10.0
7878
description: >
7979
The Node.js version. Can be a specific version number or other notations, see the documentation of
8080
https://github.com/actions/setup-node.

.github/workflows/publish-nuget.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
description: Version of the .NET SDK to set up.
3838
node-version:
3939
type: string
40-
default: 22.16.0
40+
default: 24.10.0
4141
description: >
4242
The Node.js version. Can be a specific version number or other notations, see the documentation of
4343
https://github.com/actions/setup-node.
@@ -52,8 +52,6 @@ on:
5252
type: number
5353
default: 15
5454
description: Configuration for the timeout-minutes parameter of the workflow. 360 is GitHub's default.
55-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
56-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
5755
enable-corepack:
5856
type: string
5957
default: 'false'

.github/workflows/test-analysis-failure.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
description: Version of the .NET SDK to set up.
3030
node-version:
3131
type: string
32-
default: 22.16.0
32+
default: 24.10.0
3333
description: >
3434
The Node.js version. Can be a specific version number or other notations, see the documentation of
3535
https://github.com/actions/setup-node.
@@ -40,8 +40,6 @@ on:
4040
Set to true to enable automatic caching based on the package manager field in package.json. By default,
4141
caching is disabled for this workflow (which is different from the underlying action's default behavior), to
4242
improve stability and backwards compatibility.
43-
# This is really only necessary to work around the https://github.com/nodejs/corepack/issues/612 corepack issue.
44-
# Also see https://github.com/Lombiq/NodeJs-Extensions/issues/120.
4543
enable-corepack:
4644
type: string
4745
default: 'false'

0 commit comments

Comments
 (0)