Skip to content

Commit cfc43a2

Browse files
authored
Merge pull request #11 from SGG-Modding/node20-deprecation
Node20 deprecation
2 parents aa2d2c4 + aadbb93 commit cfc43a2

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ env:
1919
source-dir: src/
2020
artifact-name: hades2-mod-template.zip
2121
artifact-content-type: application/zip
22+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
2223

2324
jobs:
2425
release:
@@ -33,22 +34,23 @@ jobs:
3334
fi
3435
3536
- name: Checkout files
36-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f
37+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3738
with:
3839
lfs: true
3940

4041
- name: Rotate unreleased section in changelog
41-
uses: thomaseizinger/keep-a-changelog-new-release@77ac767b2f7f6edf2ee72ab3364ed26667086f96
42+
uses: baynezy/ChangeLogger.Action@6e3ad430f08e13698bb01027a13ba4349b0143cc
4243
with:
4344
tag: ${{ inputs.tag }}
45+
log-path: ${{ env.changelog }}
4446

4547
- name: Build template
4648
run: |
4749
cd ${{ env.source-dir }}
4850
zip ../${{ env.artifact-name }} -r .
4951
5052
- name: Upload artifact to workflow
51-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
53+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
5254
with:
5355
name: ${{ env.artifact-name }}
5456
path: ${{ env.artifact-name }}

src/.github/workflows/release.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ env:
2323
thunderstore-config: thunderstore.toml
2424
build-dir: build
2525
artifact-content-type: application/zip
26+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
2627

2728
jobs:
2829
release:
@@ -37,14 +38,15 @@ jobs:
3738
fi
3839
3940
- name: Checkout files
40-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f
41+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
4142
with:
4243
lfs: true
4344

4445
- name: Rotate unreleased section in changelog
45-
uses: thomaseizinger/keep-a-changelog-new-release@77ac767b2f7f6edf2ee72ab3364ed26667086f96
46+
uses: baynezy/ChangeLogger.Action@6e3ad430f08e13698bb01027a13ba4349b0143cc
4647
with:
4748
tag: ${{ inputs.tag }}
49+
log-path: ${{ env.changelog }}
4850

4951
- name: Rotate version in Thunderstore CLI config
5052
run: |
@@ -65,7 +67,7 @@ jobs:
6567
echo "artifact-path=${{ env.build-dir }}/${ARTIFACT_NAME}" >> "$GITHUB_ENV"
6668
6769
- name: Upload artifact to workflow
68-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
70+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
6971
with:
7072
name: ${{ env.artifact-name }}
7173
path: ${{ env.artifact-path }}

0 commit comments

Comments
 (0)