Skip to content

Commit 0b5e076

Browse files
committed
Fix GitHub Actions workflow: update action versions and opt into Node 24
- Update actions/checkout to v5 for Node.js 24 support - Add FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 env var - Fix download-artifact merge behavior with merge-multiple Co-Authored-By: BitCode <https://github.com/sazid/bitcode>
1 parent b538e12 commit 0b5e076

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
permissions:
99
contents: write
1010

11+
env:
12+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13+
1114
jobs:
1215
build:
1316
runs-on: ubuntu-latest
@@ -18,7 +21,7 @@ jobs:
1821

1922
steps:
2023
- name: Checkout code
21-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2225

2326
- name: Set up Go
2427
uses: actions/setup-go@v5
@@ -65,15 +68,13 @@ jobs:
6568

6669
steps:
6770
- name: Checkout code
68-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
6972

7073
- name: Download all artifacts
7174
uses: actions/download-artifact@v4
7275
with:
7376
path: artifacts
74-
75-
- name: Display structure of downloaded files
76-
run: ls -R artifacts
77+
merge-multiple: true
7778

7879
- name: Create checksums
7980
run: |

0 commit comments

Comments
 (0)