diff --git a/action.yml b/action.yml index e343ade..d155641 100644 --- a/action.yml +++ b/action.yml @@ -18,8 +18,16 @@ inputs: required: false runs: - using: "node20" - main: "entry.cjs" + using: "composite" + steps: + - name: Setup Node.js 24 + uses: actions/setup-node@v4 + with: + node-version: "24" + - name: Run TypeScript entry point + run: node entry.ts + shell: bash + working-directory: ${{ github.action_path }} branding: icon: "code" diff --git a/entry.cjs b/entry.cjs index 54c14e4..6e9bf2c 100755 --- a/entry.cjs +++ b/entry.cjs @@ -26164,7 +26164,7 @@ async function main(params) { // package.json var package_default = { name: "@pullfrog/action", - version: "0.0.31", + version: "0.0.32", type: "module", files: [ "index.js", diff --git a/package.json b/package.json index 8ee55a3..eebaef6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pullfrog/action", - "version": "0.0.31", + "version": "0.0.32", "type": "module", "files": [ "index.js",