diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 93d6c21..b4bedb7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -17,15 +17,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build artifacts - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 - run: npm ci - run: npm run zip --if-present - name: Upload dist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: | @@ -34,7 +34,7 @@ jobs: dist/*.html - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' with: prerelease: false