From aa3aa42e8cd89d0825c873346a55f127c3751b85 Mon Sep 17 00:00:00 2001 From: Richard Carlsson Date: Fri, 13 Sep 2024 10:36:36 +0200 Subject: [PATCH] Updated github worflow --- .github/workflows/eleventy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/eleventy.yml b/.github/workflows/eleventy.yml index a4526fe..6374d4a 100644 --- a/.github/workflows/eleventy.yml +++ b/.github/workflows/eleventy.yml @@ -14,17 +14,17 @@ jobs: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # The following are for the Eleventy build - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '16' - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -36,7 +36,7 @@ jobs: - run: npm run build - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./_site