Skip to content

Commit 982d343

Browse files
committed
PROF-15218: Update build-test-wasm composite action to Node.js 24 versions (#150)
The build-test-wasm composite action still pinned the old Node.js 20 era actions/* versions while the rest of the repo had moved on. Bring it in line: actions/checkout v6.0.2, actions/download-artifact v8.0.1, actions/setup-node v6.3.0, actions/upload-artifact v7.0.1.
1 parent b7dd80f commit 982d343

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/build-test-wasm/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ inputs:
77
runs:
88
using: 'composite'
99
steps:
10-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
11-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
10+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
11+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
1212
- name: Setup Node.js
13-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
13+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
1414
- run: yarn install
1515
shell: bash
1616
- name: Install wasm-pack
@@ -32,7 +32,7 @@ runs:
3232
node test-wasm.js ${{ inputs.crate }}
3333
fi
3434
shell: bash
35-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
35+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3636
with:
3737
name: prebuilds-wasm-${{ inputs.crate }}
3838
if-no-files-found: ignore

0 commit comments

Comments
 (0)