From 5b55a06e5d5e12e6da127cf55970b29ca2b004ec Mon Sep 17 00:00:00 2001 From: AJ Danelz Date: Thu, 26 Sep 2024 09:37:32 -0400 Subject: [PATCH] chore: update actions versions (#257) --- .github/workflows/build-deploy-docs.yml | 10 +++++----- .github/workflows/schema-check.yaml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-deploy-docs.yml b/.github/workflows/build-deploy-docs.yml index ae8cddb6..80466a61 100644 --- a/.github/workflows/build-deploy-docs.yml +++ b/.github/workflows/build-deploy-docs.yml @@ -29,7 +29,7 @@ jobs: - name: Restore cached Docs id: dist-cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.DistDir }} key: ${{ env.DistDir }}-${{ hashFiles('deploy-versions.json') }} @@ -100,21 +100,21 @@ jobs: - if: ${{ steps.dist-cache.outputs.cache-hit != 'true' }} name: Save Docs - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ env.DistDir }} key: ${{ env.DistDir }}-${{ hashFiles('deploy-versions.json') }} - name: Upload cloudflare-pages artifact if: github.repository_owner == 'aklivity' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cloudflare-pages path: ${{ env.DistDir }} - name: Upload github-pages artifact if: github.repository_owner != 'aklivity' - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: ${{ env.DistDir }}/zilla-docs @@ -165,4 +165,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: github-deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/schema-check.yaml b/.github/workflows/schema-check.yaml index 09715322..e7088193 100644 --- a/.github/workflows/schema-check.yaml +++ b/.github/workflows/schema-check.yaml @@ -12,7 +12,7 @@ jobs: continue-on-error: true runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup pnpm uses: pnpm/action-setup@v4