diff --git a/.github/workflows/node-test.yaml b/.github/workflows/node-test.yaml index 294aee8..e0042b5 100644 --- a/.github/workflows/node-test.yaml +++ b/.github/workflows/node-test.yaml @@ -88,7 +88,7 @@ jobs: uses: actions/checkout@v4 - name: Prepare the matrix - uses: pkgjs/action/.github/actions/prepare-node-test-matrix-action@v0.1.8 + uses: pkgjs/action/.github/actions/prepare-node-test-matrix-action@v0.1.9 id: set-matrix with: upgrade-policy: ${{ inputs.upgrade-policy }} @@ -121,21 +121,21 @@ jobs: - name: Prepare post-checkout steps if: ${{ inputs.post-checkout-steps }} - uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.8 + uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.9 with: steps: ${{ inputs.post-checkout-steps }} path: post-checkout-steps - name: Prepare post-install steps if: ${{ inputs.post-install-steps }} - uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.8 + uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.9 with: steps: ${{ inputs.post-install-steps }} path: post-install-steps - name: Prepare post-test steps if: ${{ inputs.post-test-steps }} - uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.8 + uses: pkgjs/action/.github/actions/prepare-dynamic-steps@v0.1.9 with: steps: ${{ inputs.post-test-steps }} path: post-test-steps diff --git a/package.json b/package.json index ec6ccc0..1f5e146 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@pkgjs/action", "private": true, - "version": "0.1.8", + "version": "0.1.9", "description": "Github Actions tooling for testing Node.js packages", "scripts": { "lint": "[ \"$NODE_LTS_LATEST\" != \"\" ] && [ \"$MATRIX_NODE_VERSION\" != \"$NODE_LTS_LATEST\" ] && echo 'Skipping linting' || npx -- eslint .github",