From 1bb7218eefca9e0a0e297c9ef350fb0158139e8f Mon Sep 17 00:00:00 2001 From: Sean Adams-Hiett Date: Thu, 23 May 2024 16:03:41 -0500 Subject: [PATCH] Updated workflow depedencies. (#930) --- .github/workflows/delete-stale-branch.yml | 4 ++-- .github/workflows/gh-pages.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/delete-stale-branch.yml b/.github/workflows/delete-stale-branch.yml index c4af47a6d5..59ddfe3cfc 100644 --- a/.github/workflows/delete-stale-branch.yml +++ b/.github/workflows/delete-stale-branch.yml @@ -20,7 +20,7 @@ jobs: # https://github.com/actions/checkout#readme # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4 with: ref: ${{ env.TARGET_BRANCH }} @@ -43,7 +43,7 @@ jobs: # https://github.com/JamesIves/github-pages-deploy-action#readme - name: Deploy docs 🚀 - uses: JamesIves/github-pages-deploy-action@4.1.3 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: ${{ env.TARGET_BRANCH }} # The branch the action should deploy to. folder: branches diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 8669ee7f36..13eec72dc6 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -34,11 +34,11 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout 🛎️ if: ${{ github.event_name != 'pull_request_target' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout PR 🛎️ if: ${{ github.event_name == 'pull_request_target' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} @@ -88,7 +88,7 @@ jobs: # https://github.com/actions/checkout#readme - name: Checkout docs - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4 with: ref: gh-pages path: gh-pages @@ -122,7 +122,7 @@ jobs: # https://github.com/JamesIves/github-pages-deploy-action#readme - name: Deploy docs 🚀 - uses: JamesIves/github-pages-deploy-action@4.1.3 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: ${{ env.TARGET_BRANCH }} # The branch the action should deploy to. folder: gh-pages