diff --git a/.github/actions/surefire-report-summary/action.yaml b/.github/actions/surefire-report-summary/action.yaml index 73fcb65..6f1d9ec 100644 --- a/.github/actions/surefire-report-summary/action.yaml +++ b/.github/actions/surefire-report-summary/action.yaml @@ -18,5 +18,5 @@ inputs: description: 'if set, the action will fail if the percentage of passing tests is below this threshold (e.g. 95)' default: '0' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' diff --git a/.github/workflows/test-surefire-action.yml b/.github/workflows/test-surefire-action.yml index 968b645..212f1b8 100644 --- a/.github/workflows/test-surefire-action.yml +++ b/.github/workflows/test-surefire-action.yml @@ -15,10 +15,10 @@ jobs: run: working-directory: .github/actions/surefire-report-summary steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '24' cache: 'npm' cache-dependency-path: .github/actions/surefire-report-summary/package-lock.json - name: Install dependencies