Update GitHub Actions

This commit is contained in:
Dennis Reimann
2024-09-20 09:50:24 +02:00
parent afcc5a41cd
commit 0ee08be018

View File

@@ -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 }}