Compare commits

..

10 Commits

Author SHA1 Message Date
Priya Gupta
f374997960 Merge 232ec055d6 into 89d709d423 2025-10-03 11:13:51 +00:00
Priyagupta108
232ec055d6 chore: switch macos-13 runner to macos-latest-large in workflow 2025-10-03 16:43:42 +05:30
Priyagupta108
9b3f664b71 chore: update rc Node.js version in versions.yml 2025-10-03 14:07:06 +05:30
Priyagupta108
6b226b8717 chore: update Node.js versions in versions.yml 2025-10-03 13:59:27 +05:30
Priyagupta108
1b58234614 chore: update Node.js version in workflows 2025-10-03 12:50:27 +05:30
Priyagupta108
1ba05d5d30 docs: update README and action.yml for npm caching logic clarification 2025-10-01 18:20:08 +05:30
Priyagupta108
33371d09d4 chore: bump version to 6.0.0 and update documentation 2025-10-01 15:15:48 +05:30
Priyagupta108
8f225c52ce add devEngines.packageManager detection logic for npm auto-caching 2025-09-26 13:31:00 +05:30
Priyagupta108
7024c214c6 refactor: enhance package manager detection for auto-caching 2025-09-23 12:50:33 +05:30
Priyagupta108
470d7fe388 default to auto-caching only for npm package manager and documentation update 2025-09-22 15:31:26 +05:30
3 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Update the ${{ env.TAG_NAME }} tag - name: Update the ${{ env.TAG_NAME }} tag
uses: actions/publish-action@v0.4.0 uses: actions/publish-action@v0.3.0
with: with:
source-tag: ${{ env.TAG_NAME }} source-tag: ${{ env.TAG_NAME }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK }} slack-webhook: ${{ secrets.SLACK_WEBHOOK }}

View File

@@ -139,7 +139,7 @@ Examples:
- Major versions: `22`, `24` - Major versions: `22`, `24`
- More specific versions: `20.19`, `22.17.1` , `24.8.0` - More specific versions: `20.19`, `22.17.1` , `24.8.0`
- NVM LTS syntax: `lts/iron`, `lts/jod`, `lts/*`, `lts/-n` - NVM LTS syntax: `lts/erbium`, `lts/fermium`, `lts/*`, `lts/-n`
- Latest release: `*` or `latest`/`current`/`node` - Latest release: `*` or `latest`/`current`/`node`
**Note:** Like the other values, `*` will get the latest [locally-cached Node.js version](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#nodejs), or the latest version from [actions/node-versions](https://github.com/actions/node-versions/blob/main/versions-manifest.json), depending on the [`check-latest`](docs/advanced-usage.md#check-latest-version) input. **Note:** Like the other values, `*` will get the latest [locally-cached Node.js version](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#nodejs), or the latest version from [actions/node-versions](https://github.com/actions/node-versions/blob/main/versions-manifest.json), depending on the [`check-latest`](docs/advanced-usage.md#check-latest-version) input.

View File

@@ -320,7 +320,7 @@ jobs:
- x64 - x64
# an extra windows-x86 run: # an extra windows-x86 run:
include: include:
- os: windows-latest - os: windows-2022
node_version: 24 node_version: 24
architecture: x86 architecture: x86
name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }} name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }}