From edd7a8ac955a6eebb870df0dc4e6c13cd8c09e12 Mon Sep 17 00:00:00 2001 From: jamest1903 <78358343+jamest1903@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:07:20 +0200 Subject: [PATCH] Node 12 actions are deprecated so required udpated been applied on pages build config (#40) --- .github/workflows/eleventy_build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/eleventy_build.yml b/.github/workflows/eleventy_build.yml index 3198c14b..46b9fc9c 100644 --- a/.github/workflows/eleventy_build.yml +++ b/.github/workflows/eleventy_build.yml @@ -16,13 +16,13 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -32,7 +32,7 @@ jobs: npm run build - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: publish_dir: ./docs github_token: ${{ secrets.GITHUB_TOKEN }}