From 870ac1bc6026a8953af3a7bc20d9f94b2f80aab1 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Mon, 6 May 2024 11:13:45 +0200 Subject: [PATCH] update GitHub actions Signed-off-by: Peter Stadler --- .github/workflows/node.js.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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