Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Build Reason
Expand All @@ -39,17 +39,17 @@ jobs:
echo "GIT_BRANCH_SUFFIX=$branch" >> $GITHUB_ENV
echo "ref: $GITHUB_REF event: $GITHUB_EVENT_NAME branch_suffix: $branch"
- name: Setup Node.js environment
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ matrix.node_version }}
registry-url: "https://registry.npmjs.org"
- name: Cache node_modules
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ matrix.node_version }}-${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
- name: Setup .NET SDK for MinVer
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "10.0.x"
- name: Build Version
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
run: npm publish --workspaces --access public
- name: Setup GitHub CI Node.js environment
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/heads/') && matrix.os == 'ubuntu-latest' && contains(steps.version.outputs.version, '-')
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ matrix.node_version }}
registry-url: "https://npm.pkg.github.com"
Expand Down