diff --git a/.github/workflows/dependabot-batcher.yaml b/.github/workflows/dependabot-batcher.yaml index 890a049..b3c8f03 100644 --- a/.github/workflows/dependabot-batcher.yaml +++ b/.github/workflows/dependabot-batcher.yaml @@ -16,7 +16,7 @@ jobs: token: ${{ secrets.DEPENDABOT_BATCH_TOKEN }} - name: Setup Node - uses: actions/setup-node@v6.2.0 + uses: actions/setup-node@v7 with: node-version: lts/* diff --git a/.github/workflows/npm-lint.yaml b/.github/workflows/npm-lint.yaml index a2c7b7e..55f5ccc 100644 --- a/.github/workflows/npm-lint.yaml +++ b/.github/workflows/npm-lint.yaml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Setup Node.js LTS - uses: actions/setup-node@v6.2.0 + uses: actions/setup-node@v7 with: node-version: lts/* - name: NPM Clean Install diff --git a/.github/workflows/npm-publish.yaml b/.github/workflows/npm-publish.yaml index b9e7fa8..79c20f8 100644 --- a/.github/workflows/npm-publish.yaml +++ b/.github/workflows/npm-publish.yaml @@ -27,7 +27,7 @@ jobs: with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: lts/* registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/npm-test.yaml b/.github/workflows/npm-test.yaml index b1512a4..3db0fe5 100644 --- a/.github/workflows/npm-test.yaml +++ b/.github/workflows/npm-test.yaml @@ -19,7 +19,7 @@ jobs: - name: Checkout uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v6.2.0 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }} - name: NPM Clean Install