From 0ee08be01828069b7e5b0d20849f5b7a270db750 Mon Sep 17 00:00:00 2001 From: Dennis Reimann Date: Fri, 20 Sep 2024 09:50:24 +0200 Subject: [PATCH] Update GitHub Actions --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f1363f56ac..25f15aa9f97 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,9 @@ jobs: steps: # Checkout and setup - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 # Install and build @@ -35,7 +35,7 @@ jobs: # Deploy, limited to the master branch - name: Deploy if: success() && github.ref == 'refs/heads/master' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: publish_dir: ./dist github_token: ${{ secrets.GITHUB_TOKEN }}