From 134daddea409905b0204f3b138da2848aff93d8e Mon Sep 17 00:00:00 2001 From: vincent Date: Mon, 9 Dec 2024 08:48:18 -0500 Subject: [PATCH] Update GitHub Actions workflow to use actions/checkout@v4 --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fe7d976..66f8a90 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,9 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, # so your workflow can access it - name: Checkout repo - uses: actions/checkout@master + uses: actions/checkout@v4 + with: + ref: master # Build Hugo Site - run: echo "Building hugo site"