diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 7fc4b5b..24c7c96 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,11 +14,11 @@ jobs: name: Run Unit Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Use Node.js 20.x - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - name: Use Node.js 24.x + uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 24.x - name: Run tests run: | npm ci diff --git a/action.yml b/action.yml index dfe645b..8f45781 100644 --- a/action.yml +++ b/action.yml @@ -85,5 +85,5 @@ outputs: changes-markdown: description: "Markdown-formatted change set summary for PR comments (only when no-execute-changeset is true)" runs: - using: "node20" + using: "node24" main: "dist/index.js"