From bc2367450133546b70314c00f1c43f7a85153e81 Mon Sep 17 00:00:00 2001 From: blakadder Date: Sun, 26 Nov 2023 13:44:44 +0100 Subject: [PATCH] Update deploy-pages.yml --- .github/workflows/deploy-pages.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 95bc072d..a37ab1c8 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -26,14 +26,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache Jekyll Build uses: actions/cache@v3 with: path: ./_site key: ${{ runner.os }}-jekyll - name: Install jekyll_image_processing dependencies - run: sudo apt-get install libvips42 libpoppler-glib8 libvips-tools --fix-missing + run: sudo apt-get install libvips-tools - name: Setup Ruby uses: ruby/setup-ruby@v1 with: @@ -42,7 +42,7 @@ jobs: cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages id: pages - uses: actions/configure-pages@v2 + uses: actions/configure-pages@v3 - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" @@ -50,7 +50,7 @@ jobs: JEKYLL_ENV: production - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 # Deployment job deploy: