diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a65b53d..3fe4e4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,15 +14,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.2.2 - name: Setup Node - uses: actions/setup-node@v4.0.2 + uses: actions/setup-node@v4.1.0 with: node-version: '20.11.1' - name: Install Dependencies run: npm ci - name: Save error log - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.4.3 if: ${{ failure() }} with: name: npm-debug-log-${{ hashFiles('package-lock.json') }} @@ -30,7 +30,7 @@ jobs: - name: Test run: npm test - name: Report Coverage - uses: codecov/codecov-action@v4.1.0 + uses: codecov/codecov-action@v4.6.0 with: token: ${{ secrets.CODECOV_TOKEN }} - name: Lint diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 97d9566..d459a2d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,15 +10,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.2.2 - name: Setup Node - uses: actions/setup-node@v4.0.2 + uses: actions/setup-node@v4.1.0 with: node-version: '20.11.1' - name: Install Dependencies run: npm ci - name: Save error log - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.4.3 if: ${{ failure() }} with: name: npm-debug-log-${{ hashFiles('package-lock.json') }} @@ -30,7 +30,7 @@ jobs: - name: Pack run: npm pack - name: Push to NPM registry - uses: JS-DevTools/npm-publish@v3.0.1 + uses: JS-DevTools/npm-publish@v3.1.1 with: token: ${{ secrets.NPM_AUTH_TOKEN }} tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }} diff --git a/package-lock.json b/package-lock.json index 46bc09b..655a3fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "magic-comments-loader", - "version": "2.1.3", + "version": "2.1.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "magic-comments-loader", - "version": "2.1.3", + "version": "2.1.4", "license": "MIT", "dependencies": { "acorn": "^8.9.0", diff --git a/package.json b/package.json index 1ca523f..ee388bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "magic-comments-loader", - "version": "2.1.3", + "version": "2.1.4", "description": "Add webpack magic comments to your dynamic imports at build time.", "main": "dist", "type": "module",