diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ed9d8509..e0249443 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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"