From 9eca2d3d7173cb27207cd5983fc79bd22b6cc9d2 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 27 Mar 2024 00:18:00 +0100 Subject: [PATCH 1/2] Update actions/checkout action to v4 --- .github/workflows/jekyll-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jekyll-build.yml b/.github/workflows/jekyll-build.yml index 4763a13..b14412e 100644 --- a/.github/workflows/jekyll-build.yml +++ b/.github/workflows/jekyll-build.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build the site in the jekyll/builder container run: | docker run \ From 31ddf84c4422bd69b759788ccff89f29d6b77749 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 27 Mar 2024 00:22:26 +0100 Subject: [PATCH 2/2] Update more actions --- .github/workflows/jekyll-gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index 5190b12..c0d4aaa 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -33,14 +33,14 @@ jobs: # include: "*" # exclude: "" - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v4 - name: Build with Jekyll uses: actions/jekyll-build-pages@v1 with: source: ./ destination: ./_site - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 # Deployment job deploy: @@ -52,4 +52,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4