From 19b6cfc6c67a17f0fb841b10fec35a58021b726c Mon Sep 17 00:00:00 2001 From: Shauna Gordon Date: Wed, 12 Jun 2024 02:51:41 -0400 Subject: [PATCH] Already bitten... Have to at least include the major versions Signed-off-by: Shauna Gordon --- .github/workflows/main.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb58382f1..8c7b00511 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,16 +9,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout - - uses: peaceiris/actions-hugo + - uses: actions/checkout@v4 + - uses: peaceiris/actions-hugo@v3 with: hugo-version: 'latest' - name: Build run: hugo - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action + uses: JamesIves/github-pages-deploy-action@v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: master - FOLDER: public - CLEAN: true + branch: master + folder: public + clean: true